-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtailwind.config.js
50 lines (50 loc) · 1022 Bytes
/
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
/** @type {import('tailwindcss').Config} */
export default {
content: ['./index.html', './src/**/*.{js,ts,jsx,tsx}'],
theme: {
extend: {
screens: {
xs: '380px',
'2xs': '320px'
},
colors: {
primary: {
disabled: '#d3dbde',
400: '#e3ebee',
700: '#07877d',
800: '#4CA813',
900: '#2cdd4d'
},
accent: {
700: '#BDFF00'
},
blue: {
400: '#9599B3'
},
dangerous: {
700: '#dc1e1e',
},
secondary: {
50: '#000000',
100: '#202426',
200: '#222222',
500: '#707070',
600: '#DDDDDD',
700: '#FFFFFF'
},
},
fontSize: {
xl: '40px', // h1
lg: '36px', // h2
md: '24px', // h3
sm: '20px', // h4
xs: '16px', // h5
xxs: '10px', // h6
},
lineHeight: {
xl: '48px', // h1
},
},
},
plugins: [],
};