-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtailwind.config.js
More file actions
34 lines (34 loc) · 926 Bytes
/
tailwind.config.js
File metadata and controls
34 lines (34 loc) · 926 Bytes
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
/** @type {import('tailwindcss').Config} */
module.exports = {
mode: 'jit',
darkMode: 'class',
content: ['./public/index.html', './src/**/*.{html,js,ts,jsx,tsx}'],
theme: {
extend: {
flex: {
'auto-0': '0 0 auto',
'0-0-80': '0 0 80px',
},
colors: {
'icon-light': '#f5f5f5',
'icon-dark': '#000000',
'light-100': '#efefef', // rgb(239, 239, 239)
'light-200': '#737373', // rgb(115, 115, 115)
'light-300': '#dbdbdb', // rgb(219, 219, 219)
'dark-100': '#262626', // rgb(38, 38, 38)
'dark-200': '#a8a8a8', // rgb(168, 168, 168)
'dark-300': '#000000',
},
screens: {
xs: '480px',
// sm: '640px',
// md: '768px',
'screen-900': '900px',
// lg: '1024px',
// xl: '1280px',
// '2xl': '1536px',
},
},
},
plugins: [require('tailwind-scrollbar')],
}