-
Notifications
You must be signed in to change notification settings - Fork 0
/
tailwind.config.js
55 lines (53 loc) · 1.02 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
48
49
50
51
52
53
54
55
const colors = require('tailwindcss/colors')
module.exports = {
darkMode: 'class',
plugins: [],
purge: [
'./src/**/*.html',
'./src/**/*.vue',
'./src/**/*.jsx',
],
theme: {
colors: {
blue: colors.blue,
white: colors.white,
neutral: colors.gray,
red: colors.red,
yellow: colors.yellow,
black: colors.black,
gray: colors.gray,
slashgreen: {
DEFAULT: '#21D896',
x100: '#D9E3E0',
x300: '#A9E0CC',
x500: '#81DDBC',
x700: '#5BDBAD'
},
},
fontFamily: {
opensans: ['Open Sans', 'Verdana', 'sans-serif'],
museomoderno: ['Museo Moderno']
},
minWidth: {
'0': '0',
'1/4': '25%',
'1/2': '50%',
'3/4': '75%',
'full': '100%',
'200' : '200px'
},
minHeight: {
'0': '0',
'1/4': '25%',
'1/2': '50%',
'3/4': '75%',
'full': '100%',
'300': '300px',
}
},
variants: {
extend: {
textOpacity: ['dark']
}
},
}