-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathtailwind.config.js
More file actions
115 lines (115 loc) · 2.82 KB
/
Copy pathtailwind.config.js
File metadata and controls
115 lines (115 loc) · 2.82 KB
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
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
module.exports = {
purge: [],
darkMode: false,
theme: {
extend: {
animation: {
'skeleton-loading': 'skeleton-loading 1.4s ease infinite',
},
backgroundImage: {
'gradient-skeleton-loading':
'linear-gradient(90deg,rgba(190,190,190,.2) 25%,rgba(129,129,129,.24) 37%,rgba(190,190,190,.2) 63%)',
},
backgroundSize: {
'skeleton-loading': '400% 100%',
},
colors: {
danger: {
DEFAULT: '#FF464F',
dark: '#FF323C',
},
primary: {
light: '#66C2FF',
DEFAULT: '#0099FF',
dark: '#005C99',
100: '#e5f4fe',
},
secondary: {
light: '#F9DA9F',
DEFAULT: '#F2A71B',
dark: '#916108',
},
blue: {
light: '#E5F5FF',
DEFAULT: '#0099FF',
dark: '#004F83',
},
orange: {
light: '#FFF8ED',
DEFAULT: '#F2A71B',
dark: '#7A3700',
},
green: {
light: '#D9F7BE',
DEFAULT: '#389E0D',
dark: '#266B09',
},
purple: {
light: '#EFDBFF',
DEFAULT: '#531DAB',
dark: '#3A1478',
},
teal: {
light: '#B5F5EC',
DEFAULT: '#08979C',
dark: '#056569',
},
grey: {
light: '#EBE4E4',
dark: '#594E4E',
DEFAULT: '#121111',
},
light: {
100: '#EBE4E4',
300: '#F5F2F2',
},
dark: {
100: '#231F1F',
200: '#332C2C',
300: '#594E4E',
400: '#877878',
500: '#B2A1A1',
},
},
borderRadius: {
'3xl': '1.5rem',
},
fontFamily: {
sans:
'"Inter",ui-sans-serif,system-ui,-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,"Helvetica Neue",Arial,"Noto Sans",sans-serif,"Apple Color Emoji","Segoe UI Emoji","Segoe UI Symbol","Noto Color Emoji"',
},
fontSize: {
base: '0.9375rem',
'heading-1': ['5.75rem', '7rem'],
'heading-2': ['3.625rem', '4.375rem'],
'heading-3': ['3rem', '3.5rem'],
'heading-4': ['2rem', '2.5rem'],
'heading-5': ['1.5rem', '1.75rem'],
'heading-6': ['1.1875rem', '1.5rem'],
xxs: '0.625rem',
},
keyframes: {
'skeleton-loading': {
'0%': { backgroundPosition: '100% 50%' },
'100%': { backgroundPosition: '0 50%' },
},
},
letterSpacing: {
'heading-1': '-1.5px',
'heading-2': '-0.5px',
'heading-3': '0',
'heading-4': '0.25px',
'heading-5': '0',
'heading-6': '0.15px',
},
lineHeight: {
3.5: '0.875rem',
4.5: '1.125rem',
},
},
},
variants: {
extend: {},
},
plugins: [],
}