-
Notifications
You must be signed in to change notification settings - Fork 18
/
tailwind.config.js
51 lines (50 loc) · 1.12 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
const colors = require('tailwindcss/colors')
module.exports = {
corePlugins: {
preflight: true
},
future: {
removeDeprecatedGapUtilities: true,
purgeLayersByDefault: true,
defaultLineHeights: true,
standardFontWeights: true
},
content: [
"./src/main/resources/**/*.html",
"./src/main/clojure/**/*.cljs"
],
theme: {
fontFamily: {
sans: ['Inter', 'sans-serif'],
mono: ['Space Mono'],
"source-sans-pro": ['Source Sans Pro', 'sans-serif']
},
extend: {
colors: {
'convex-dark-blue': '#0F206C',
'convex-medium-blue': '#416BA9',
'convex-light-blue': '#6AAAE4',
'convex-sky-blue': '#EBF7FF',
'convex-white': '#F5F7FD'
},
typography: {
DEFAULT: {
css: {
pre: {
color: false,
backgroundColor: false
},
a: {
fontWeight: '500',
textDecoration: 'underline',
color: colors.blue['500']
},
},
}
}
},
},
plugins: [
require('@tailwindcss/typography')
]
}