-
-
Notifications
You must be signed in to change notification settings - Fork 1
/
tailwind.config.js
40 lines (40 loc) · 1.05 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
module.exports = {
purge: ['./resources/**/*.php'],
theme: {
borderRadius: {
none: '0',
sm: '0.125rem',
default: '0.25rem',
md: '0.5rem',
lg: '0.875rem',
full: '9999px'
},
extend: {
colors: {
blue: {
'100': '#F5F8FB',
'200': '#E2E4FB',
'300': '#ACB0FF',
'400': '#7F87FA',
'500': '#4852F2',
'600': '#2831C5',
'700': '#252B88',
'800': '#1D2378',
'900': '#070A1F'
},
yellow: {
'500': '#FFD05A'
}
},
fontSize: {
sm: ['11px', '18px'],
base: ['14px', '26px'],
lg: ['16px', '29px'],
xl: ['20px', '40px'],
'2xl': ['35px', '41px']
}
}
},
variants: {},
plugins: []
};