-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathtailwind.config.cjs
50 lines (48 loc) · 1.25 KB
/
tailwind.config.cjs
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
/** @type {import('tailwindcss').Config} */
const defaultTheme = require('tailwindcss/defaultTheme');
module.exports = {
content: ['./index.html', './src/**/*.{vue,js,ts,jsx,tsx}'],
theme: {
screens: {
...defaultTheme.screens,
},
extend: {
colors: {
bg: '#4D4D4D',
primary: '#B7EC5D',
'primary-dark': '#648D1E',
'primary-frame': 'rgba(183, 236, 93, 0.3)',
'primary-linear': 'rgb(183, 236, 93)',
secondary: '#4D4D4D',
'secondary-dark': '#222222',
'secondary-tint': '#f5f5f5',
success: '#B7EC5D',
'success-dark': '#648D1E',
'success-tint': '#D9FF99',
danger: '#F93819',
'danger-dark': '#A01600',
'danger-tint': '#FFA394',
'pen-black': '#000000',
'pen-blue': '#0066FF',
'pen-red': '#f93819',
gray: {
10: '#E6E6E6',
20: '#CCCCCC',
30: '#B3B3B3',
40: '#999999',
50: '#808080',
60: '#666666',
70: '#4D4D4D',
80: '#333333',
90: '#1A1A1A',
},
},
transitionTimingFunction: {
'in-page': 'cubic-bezier(1, 0.5, 0.8, 1)',
},
animation: {},
keyframes: {},
},
},
plugins: [],
};