-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathtailwind.config.js
57 lines (56 loc) · 1.26 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
import plugin from 'tailwindcss/plugin';
/** @type {import('tailwindcss').Config} */
export default {
darkMode: 'class',
content: ['./index.html', './src/**/*.{js,ts,jsx,tsx}'],
theme: {
extend: {
colors: {
main: { base: '#59473C', darken: '#311B0E', lighten: '#8C6F5E' },
active: {
base: '#FF7A00',
darken: '#D76700',
lighten: '#FFC998',
lightest: '#FFE6CE'
},
sub: {
blue: '#487DAD',
sky: '#CCF7FA',
red: '#FF3D00',
lime: '#40DF32',
green: '#349E2C'
},
gray: {
100: '#F1F1F1',
200: '#DCDDDE',
300: '#8A8A8A',
400: '#5F5F5F',
500: '#313131',
600: '#B1B1B1'
},
white: '#ffffff',
black: '#000000'
},
fontFamily: { OAGothic: ['OAGothic'] },
screens: {
mobile: {},
tablet: {},
desktop: {},
cs: '0px'
}
}
},
plugins: [
plugin(({ addUtilities }) => {
addUtilities({
'.no-scrollbar::-webkit-scrollbar': {
display: 'none'
},
'.no-scrollbar': {
scrollbarWidth: 'none',
'-ms-overflow-style': 'none'
}
});
})
]
};