-
Notifications
You must be signed in to change notification settings - Fork 0
/
tailwind.config.js
55 lines (54 loc) · 1.13 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
/** @type {import('tailwindcss').Config} */
export default {
content: [
'./index.html',
'./src/**/*.{js,ts,jsx,tsx}',
],
theme: {
extend: {
colors: {
bg: {
DEFAULT: '#1a191f',
},
text: {
DEFAULT: '#121214',
blue: '#468DC9',
},
primary: {
DEFAULT: '#FFC408',
extend: '#fff6d8',
light: '#ffcf39',
dark: '#b28905',
},
secondary: {
DEFAULT: '#306F7D',
light: '#e4f2f5',
dark: '#214d57',
},
tertiary: {
DEFAULT: '#14BDBD',
},
up: {
DEFAULT: '#0ecb81',
extend: '#D0F2F2',
},
down: {
DEFAULT: '#FF6E6E',
extend: '#FFE2E2',
},
gray: {
bg: '#2a2932',
hover: '#fafafa',
border: '#efefef',
1: '#4c4c4c',
card: '#2c2c2e',
secondary: '#9b9696',
},
},
boxShadow: {
DEFAULT: 'rgba(88, 102, 126, 0.08) 0px 4px 24px, rgba(88, 102, 126, 0.12) 0px 1px 2px',
}
},
},
plugins: [],
}