-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtailwind.config.js
57 lines (55 loc) · 1.02 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
/** @type {import('tailwindcss').Config} */
const circle = {
alert: {
color: '#D72C0D',
border: '#DC462A',
background: '#FFF4F4',
},
blue: {
900: '#506CF0',
800: '#5f7cf3',
700: '#6f8cf6',
600: '#7f9bf8',
500: '#91aafa',
400: '#a2b8fc',
300: '#b4c7fe',
200: '#c6d5ff',
100: '#d9e3ff',
50: '#ecf1ff',
},
grey: {
background: '#F7F9FB',
shade: {
dark: '#1D2839',
medium: '#687387',
light: '#8594AA',
},
},
placeholder: '#8D9CAE',
}
export default {
content: ['./index.html', './src/**/*.{js,ts,jsx,tsx}'],
theme: {
extend: {
backgroundColor: {
circle,
primary: '#1C2226',
secondary: '#E6E8EC',
},
borderColor: {
circle,
primary: '#8A94A6',
secondary: '#E6E8EC',
},
colors: {
primary: '#8A94A6',
secondary: '#404F5E',
circle,
},
ringColor: {
circle,
},
},
},
plugins: [require('@tailwindcss/forms')],
}