-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtailwind.config.js
47 lines (47 loc) · 1.15 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
module.exports = {
purge: [
'./components/**/*.{vue,js}',
'./layouts/**/*.vue',
'./pages/**/*.vue',
'./plugins/**/*.{js,ts}',
'./nuxt.config.{js,ts}',
],
darkMode: false, // or 'media' or 'class'
theme: {
extend: {
fontFamily: {
title: [
'Quicksand',
'Source Sans Pro',
'BlinkMacSystemFont',
'Segoe UI',
'Roboto',
'Helvetica Neue',
'Arial',
'sans - serif',
],
},
colors: {
primaryMain: '#118ab2',
primaryMainDark: '#0a5770',
primaryMainLight: '#cceffa',
primaryMainExtraLight: '#f5fcfe',
secondaryMain: '#073b4c',
primaryAccent: '#06d6a0',
primaryAccentLight: '#cdfef1',
primaryAccentDark: '#03634a',
secondaryAccent: '#ef476f',
secondaryAccentDark: '#830b27',
secondaryAccentLight: '#fbd0da',
tertiaryAccent: '#ffd166',
tertiaryAccentDark: '#805900',
tertiaryAccentLight: '#fff0cc',
offWhite: '#ededed',
},
},
},
variants: {
extend: {},
},
plugins: [require('@tailwindcss/forms')],
}