-
Notifications
You must be signed in to change notification settings - Fork 0
/
tailwind.config.js
43 lines (42 loc) · 1.28 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
const { colors } = require('tailwindcss/defaultTheme')
const defaultTheme = require('tailwindcss/defaultTheme')
module.exports = {
mode: 'jit',
important: true,
purge: {
enabled: false,
content: ['./pages/**/*.vue']
},
darkMode: false,
theme: {
extend: {
colors: {
'bevagelse-blue-dark': '#041A57',
'bevagelse-blue-light': '#0C81E8',
'bevagelse-turquoise': '#00CCFF',
'bevagelse-yellow': '#FFC905',
'bevagelse-green': '#005F61',
// transparent: 'transparent',
// current: 'currentColor',
// blue: {
// light: '#00CCFF',
// DEFAULT: '#0C81E8',
// dark: '#041A57'
// },
// 'blue-test': '#00CCFF',
// red: '#00CCFF',
// yellow: '#FFC905',
// green: '#005F61',
// white: colors.white,
// black: colors.black,
},
fontFamily: {
'poppins': ['Poppins', 'ui-serif', 'Georgia']
}
}
},
plugins: [
require('@tailwindcss/forms'),
require('@tailwindcss/aspect-ratio'),
]
}