-
Notifications
You must be signed in to change notification settings - Fork 0
/
tailwind.config.js
38 lines (38 loc) · 977 Bytes
/
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
/** @type {import('tailwindcss').Config} */
export default {
content: [
'./components/**/*.{js,ts,vue}',
'./layouts/**/*.vue',
'./pages/**/*.{js,ts,vue}',
'./plugins/**/*.{js,ts}',
'./app.vue',
'./app.html',
'./error.vue',
],
theme: {
extend: {
colors: {
aqua: {
normal: '#77D5AF',
dark: '#6BC29F',
},
cornflower: {
normal: '#5DA9E9',
light: '#66BAFF',
},
dark: {
light: '#303036',
normal: '#2C2F33',
dark: '#23272A',
super: '#1b1d1f',
duper: '#191b1d',
},
},
fontSize: {
'7xl': '4.5rem',
'8xl': '6rem',
},
},
},
plugins: [],
};