-
-
Notifications
You must be signed in to change notification settings - Fork 28
/
Copy pathtailwind.config.js
38 lines (36 loc) · 1.18 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
import defaultTheme from 'tailwindcss/defaultTheme'
import colors from 'tailwindcss/colors'
import forms from '@tailwindcss/forms'
import { addIconSelectors } from '@iconify/tailwind'
/** @type {import('tailwindcss').Config} */
export default {
darkMode: 'class',
content: ['./index.html', './src/**/*.{js,jsx,vue}'],
theme: {
extend: {
fontFamily: {
sans: ['Noto Sans', ...defaultTheme.fontFamily.sans],
},
boxShadow: {
't-lg': 'var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), 0 -10px 15px -3px rgba(0, 0, 0, 0.1), 0 -4px 6px -2px rgba(0, 0, 0, 0.05)',
},
colors: {
dark: {
'eval-0': '#151823',
'eval-1': '#222738',
'eval-2': '#2A2F42',
'eval-3': '#2C3142',
},
primary: {
light: colors.purple[400],
DEFAULT: colors.purple[500],
dark: colors.purple[600],
},
},
},
},
plugins: [
forms,
addIconSelectors(['tabler']),
],
}