-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtailwind.config.js
95 lines (92 loc) · 2.93 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
82
83
84
85
86
87
88
89
90
91
92
93
94
95
/* eslint-disable @typescript-eslint/no-var-requires */
const colors = require('tailwindcss/colors');
const { fontFamily, fontSize, screens } = require('tailwindcss/defaultTheme');
function withOpacityValue(variable) {
return ({ opacityValue }) => {
if (opacityValue === undefined) {
return `rgb(var(${variable}))`;
}
return `rgb(var(${variable}) / ${opacityValue})`;
};
}
/** @type {import("@types/tailwindcss/tailwind-config").TailwindConfig } */
module.exports = {
content: ['./src/**/*.{js,jsx,ts,tsx}'],
darkMode: 'class', // or 'media' or 'class'
theme: {
extend: {
fontFamily: {
primary: ['Inter', ...fontFamily.sans],
},
container: {
screens: {
DEFAULT: '100%',
sm: '640px',
md: '768px',
lg: '1024px',
xl: '1280px',
'2xl': '1280px',
},
},
colors: {
...colors,
primary: {
// Customize it on globals.css :root
DEFAULT: withOpacityValue('--tw-color-primary'),
50: withOpacityValue('--tw-color-primary-50'),
100: withOpacityValue('--tw-color-primary-100'),
200: withOpacityValue('--tw-color-primary-200'),
300: withOpacityValue('--tw-color-primary-300'),
400: withOpacityValue('--tw-color-primary-400'),
500: withOpacityValue('--tw-color-primary-500'),
600: withOpacityValue('--tw-color-primary-600'),
700: withOpacityValue('--tw-color-primary-700'),
800: withOpacityValue('--tw-color-primary-800'),
900: withOpacityValue('--tw-color-primary-900'),
},
secondary: withOpacityValue('--tw-color-secondary'),
tertiary: withOpacityValue('--tw-color-tertiary'),
accent: withOpacityValue('--tw-color-accent'),
dark: '#0e0e14',
'dark-lighter': '#1c1c1c',
darkseafoam: '#3F87A1',
darkerseafoam: '#207796',
accentLight: '#6c9cec',
},
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',
},
},
shimmer: {
'0%': {
backgroundPosition: '-700px 0',
},
'100%': {
backgroundPosition: '700px 0',
},
},
},
animation: {
flicker: 'flicker 3s linear infinite',
shimmer: 'shimmer 1.3s linear infinite',
},
},
screens: {
xs: '425px',
...screens,
},
fontSize: {
smx: '0.8125rem',
...fontSize,
},
},
plugins: [require('@tailwindcss/forms'), require('@tailwindcss/typography'), require('@tailwindcss/line-clamp')],
};