-
Notifications
You must be signed in to change notification settings - Fork 19
/
tailwind.config.js
64 lines (62 loc) · 1.91 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
56
57
58
59
60
61
62
63
64
const colors = require('tailwindcss/colors')
module.exports = {
purge: {
enable: true,
purge: ['./webapp/templates/*.html'],
content: ["./webapp/templates/*.html", "./webapp/templates/security/*.html"],
},
darkMode: false,
theme: {
colors: {
gray: colors.coolGray,
},
extend: {
colors: {
brand: {
black: '#000000',
white: '#FFFFFF',
green: {
DEFAULT: '#084945',
dark: '#07403C',
},
greenBright: '#6EEFE6',
greenPastel: '#D1FAF7',
greenLight: '#EDFDFC',
yellow: '#E9A135',
yellowBright: '#EFBB6E',
yellowPastel: '#FAEAD1',
yellowLight: '#FDF6ED',
funcRed: '#E93559',
funcLime: '#5FE935',
funcPurple: '#2B0849'
},
},
typography: {
DEFAULT: {
css: {
a: {
color: '#E83559',
'&:hover': {
color: '#E83559',
},
'font-weight': '400',
'text-decoration': 'none',
},
img: {
display: 'inline',
},
blockquote: {
'border-left-color': '#E93559'
},
},
},
},
},
},
variants: {},
plugins: [
require('tailwindcss/colors'),
require('@tailwindcss/forms'),
require('@tailwindcss/typography')
]
}