-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtailwind.config.js
43 lines (38 loc) · 1.19 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
import defaultTheme from 'tailwindcss/defaultTheme'
import colors from 'tailwindcss/colors'
import forms from '@tailwindcss/forms'
/** @type {import('tailwindcss').Config} */
export default {
darkMode: 'class',
content: ['./index.html', './src/**/*.{js,jsx,vue}'],
theme: {
extend: {
fontFamily: {
sans: ['Inter', ...defaultTheme.fontFamily.sans],
},
colors: {
primary: {
light: 'var(--color-primary-light)',
DEFAULT: 'var(--color-primary)',
dark:'var(--color-primary-dark)',
},
dark: {
'eval-0': '#151823',
'eval-1': '#222738',
'eval-2': '#2A2F42',
'eval-3': '#2C3142',
},
},
keyframes: {
rotate: {
'100%': { transform: 'rotate(1turn)' },
}
},
animation: {
rotate: 'rotate 4s infinite linear',
'rotate-reverse': 'rotate 4s infinite linear reverse',
},
},
},
plugins: [forms],
}