-
Notifications
You must be signed in to change notification settings - Fork 10
/
tailwind.config.js
43 lines (43 loc) · 1.27 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
/** @type {import('tailwindcss').Config} */
module.exports = {
content: ['./components/**/*.{js,vue,ts}', './layouts/**/*.vue', './pages/**/*.vue', './plugins/**/*.{js,ts}', './nuxt.config.{js,ts}', './app.vue'],
theme: {
fontFamily: {
poppins: ['Poppins', 'sans-serif'],
},
extend: {
colors: {
bgdark: '#1c232f',
gray: {
DEFAULT: '#f4f4f4',
light: '#f8f8f8',
},
primary: {
DEFAULT: '#5367ff',
light: '#eef0ff',
},
secondary: {
DEFAULT: '#0dcaf0',
light: '#e7fafe',
},
success: {
DEFAULT: '#00d09c',
light: '#e6fbf6',
},
danger: {
DEFAULT: '#ff585d',
light: '#ffeeef',
},
warning: {
DEFAULT: '#ffb61b',
light: '#fff3cd',
},
info: {
DEFAULT: '#1da1f2',
light: '#e8f6fe',
},
},
},
},
plugins: [],
};