-
Notifications
You must be signed in to change notification settings - Fork 0
/
tailwind.config.js
53 lines (53 loc) · 1.16 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
44
45
46
47
48
49
50
51
52
53
/** @type {import('tailwindcss').Config} */
module.exports = {
content: [
'./components/**/*.{js,vue,ts}',
'./layouts/**/*.vue',
'./pages/**/*.vue',
'./plugins/**/*.{js,ts}',
'./nuxt.config.{js,ts}'
],
theme: {
colors: {
transparent: 'transparent',
current: 'currentColor',
white: '#ffffff',
primary: {
darkest: '#005390',
darker: '#006bab',
dark: '#0084c7',
DEFAULT: '#309ee3',
light: '#66c0ea', // 300
lighter: '#b6e6fc', // 100
},
error: {
dark: '#d53134',
DEFAULT: '#f15555',
light: '#f99290'
},
warn: {
dark: '#e0a019',
DEFAULT: '#e3ce30',
light: '#f0ef9a'
},
text: {
DEFAULT: '#24282e',
alpha: '#01040ada',
light: '#656970',
lighter: '#a3a7af'
},
line: {
DEFAULT: '#e5e5e5',
light: '#f5f5f5'
}
},
extend: {
fontFamily: {
sans: ['Roboto', 'sans-serif'],
mono: ['Ubuntu Mono', 'monospace'],
'mono-table': ['Ubuntu Mono Table', 'Ubuntu Mono', 'monospace']
}
}
},
plugins: []
};