-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtailwind.config.js
47 lines (47 loc) · 979 Bytes
/
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
/** @type {import('tailwindcss').Config} */
module.exports = {
content: ['./src/**/*.{html,js,vue}', './public/index.html'],
theme: {
colors: {
black: '#000000',
white: '#ffffff',
'body-dark': '#9ca3af',
body: '#f3f4f6',
border: '#ccc',
default: '#ffffff',
standard: '#f9f9f9',
primary: '#22bdff',
success: '#7dff67',
danger: '#f55',
error: '#f55',
'standard-second': '#d9d9d9',
'primary-second': '#0e9fdc',
'success-second': '#57db42',
'danger-second': '#d93434',
'error-second': '#d93434',
},
extend: {
zIndex: {
1: 1,
},
width: {
sidebar: '150px',
},
borderRadius: {
main: '4px',
},
fontSize: {
sm: '12px',
md: '16px',
lg: '20px',
h3: '25px',
},
spacing: {
sm: '4px',
md: '8px',
lg: '12px',
},
},
},
plugins: [],
};