-
Notifications
You must be signed in to change notification settings - Fork 0
/
tailwind.config.cjs
69 lines (66 loc) · 1.47 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
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
/** @type {import('tailwindcss').Config}*/
const config = {
content: ['./src/**/*.{html,js,svelte,ts}'],
darkMode: 'class',
theme: {
fontFamily: {
sans: ['Inter', 'sans-serif'],
serif: ['Merriweather', 'serif'],
mono: ['JetBrains Mono']
},
extend: {
colors: {
app: '#13d44e',
'app-accessible': '#10a73e',
'c-black': '#101010',
'c-white': '#fff',
'f-grey': {
100: '#a0a0a0',
200: '#555555'
},
'f-info': '#668ee3',
'f-warn': '#ffb300',
'f-danger': '#d73306',
'f-success': '#30dbde',
red: {
DEFAULT: '#AF3029',
light: '#D14D41'
},
orange: {
DEFAULT: '#BC5215',
light: '#DA702C'
},
yellow: {
DEFAULT: '#AD8301',
light: '#D0A215'
},
green: {
DEFAULT: '#66800B',
light: '#879A39'
},
cyan: {
DEFAULT: '#24837B',
light: '#3AA99F'
},
blue: {
DEFAULT: '#205EA6',
light: '#4385BE'
},
purple: {
DEFAULT: '#5E409D',
light: '#8B7EC8'
},
magenta: {
DEFAULT: '#A02F6F',
light: '#CE5D97'
}
}
}
},
plugins: [
require('@tailwindcss/forms'),
require('@tailwindcss/typography'),
require('tailwind-scrollbar')({ nocompatible: true })
]
}
module.exports = config