This repository has been archived by the owner on Oct 26, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtailwind.config.js
81 lines (79 loc) · 2.46 KB
/
tailwind.config.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
/* eslint-disable @typescript-eslint/no-var-requires */
const { fontFamily } = require('tailwindcss/defaultTheme');
const colors = require('tailwindcss/colors');
function withOpacity(variableName) {
return ({ opacityValue }) => {
if (opacityValue !== undefined) {
return `rgba(var(${variableName}), ${opacityValue})`;
}
return `rgb(var(${variableName}))`;
};
}
/** @type {import("@types/tailwindcss/tailwind-config").TailwindConfig } */
module.exports = {
mode: 'jit',
purge: ['./src/**/*.{js,jsx,ts,tsx}'],
darkMode: 'media', // or 'media' or 'class'
important: true,
theme: {
extend: {
fontFamily: {
primary: ['Matter SQ', 'Inter', ...fontFamily.sans],
heading: ['Space Grotesk', 'Graph', 'Inter', ...fontFamily.sans],
},
colors: {
primary: {
// Customize it on globals.css :root
50: withOpacity('--tw-clr-primary-50'),
100: withOpacity('--tw-clr-primary-100'),
200: withOpacity('--tw-clr-primary-200'),
300: withOpacity('--tw-clr-primary-300'),
400: withOpacity('--tw-clr-primary-400'),
500: withOpacity('--tw-clr-primary-500'),
600: withOpacity('--tw-clr-primary-600'),
700: withOpacity('--tw-clr-primary-700'),
800: withOpacity('--tw-clr-primary-800'),
900: withOpacity('--tw-clr-primary-900'),
},
sky: colors.sky,
teal: colors.teal,
cyan: colors.cyan,
rose: colors.rose,
dark: '#111111',
gray: {
100: '#f5f5f5',
200: '#eeeeee',
300: '#e0e0e0',
400: '#F2F2F2',
500: '#9e9e9e',
600: '#424242',
700: '#333333',
800: '#222222',
900: '#111111',
},
secondary: colors.yellow,
neutral: colors.gray,
},
keyframes: {
flicker: {
'0%, 19.999%, 22%, 62.999%, 64%, 64.999%, 70%, 100%': {
opacity: 0.99,
filter:
'drop-shadow(0 0 1px rgba(252, 211, 77)) drop-shadow(0 0 15px rgba(245, 158, 11)) drop-shadow(0 0 1px rgba(252, 211, 77))',
},
'20%, 21.999%, 63%, 63.999%, 65%, 69.999%': {
opacity: 0.4,
filter: 'none',
},
},
},
animation: {
flicker: 'flicker 3s linear infinite',
},
},
},
variants: {
extend: {},
},
plugins: [require('@tailwindcss/forms'), require('@tailwindcss/aspect-ratio')],
};