-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtailwind.config.js
More file actions
35 lines (32 loc) · 833 Bytes
/
Copy pathtailwind.config.js
File metadata and controls
35 lines (32 loc) · 833 Bytes
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
import defaultTheme from 'tailwindcss/defaultTheme'
export default {
content: ['./src/**/*.{vue,js,ts,jsx,tsx}'],
purge: {
options: {
safelist: ['bg-primary', 'bg-secondary', 'group-hover:text-offGray','text-offGray'],
}
},
theme: {
extend: {
colors: {
primary: '#6cb7e0',
primaryDull: '#7eb2ce',
primaryDark: '#2d98d2',
secondary: '#0c1f31',
secondaryDull: '#1c344a',
secondaryDark: '#050d15',
offWhite: '#ECE9E6',
offWhiteDark: '#ded9d3',
offWhiteDull: '#fff',
offBlack: '#1D2423',
offGray: '#2d3937',
offGrayDull:'#2d3039',
offGrayDark: '#171c1b',
link:'#c36'
},
fontFamily: {
'main': ['Poppins','Open Sans', 'Segoe UI', 'Roboto', 'Arial'],
}
}
},
}