-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathtailwind.config.js
50 lines (50 loc) · 1.21 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
module.exports = {
mode: 'jit',
content: ['./app/**/*.{js,ts,jsx,tsx}', './src/**/*.{js,ts,jsx,tsx}'], // remove unused styles in production
darkMode: 'media', // or 'media' or 'class'
theme: {
extend: {
colors: {
brand: '#BDD5EA',
darkest: '#0B0E16',
dark: '#363636',
mid: '#ABB8C9',
light: '#E1E6EB',
lightest: '#FFFFFF',
primary: '#050816',
'black-100': '#100d25',
'black-200': '#090325',
'white-100': '#f3f3f3',
},
boxShadow: {
card: '0px 35px 120px -15px #27375E',
},
screens: {
xs: '450px',
},
animation: {
blob: 'blob 6s linear infinite',
},
keyframes: {
blob: {
'0%': {
transform: 'translate(0px, 0px) scale(1)',
},
'25%': {
transform: 'translate(10px, -10px) scale(1.1)',
},
'50%': {
transform: 'translate(0px, 0px) scale(1)',
},
'75%': {
transform: 'translate(10px, 10px) scale(0.9)',
},
'100%': {
transform: 'tranlate(0px, 0px) scale(1)',
},
},
},
},
},
plugins: [],
}