-
-
Notifications
You must be signed in to change notification settings - Fork 3
/
tailwind.config.js
42 lines (41 loc) · 1.05 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
const colors = require('tailwindcss/colors');
module.exports = {
content: [
'../../plugins/*/*/blocks/*.block',
'./blocks/**/*.block',
'./layouts/**/*.htm',
'./pages/**/*.htm',
'./partials/**/*.htm',
],
theme: {
colors: {
// Build your palette here
transparent: 'transparent',
current: 'currentColor',
black: colors.black,
gray: colors.neutral,
white: colors.white,
blue: colors.sky,
emerald: colors.emerald,
amber: colors.amber,
purple: colors.violet,
green: colors.green,
red: colors.red,
},
container: {
center: true,
},
fontFamily: {
heading: ["'Work Sans'", 'sans-serif'],
body: ["'Heebo'", 'sans-serif'],
},
fontWeight: {
light: 200,
normal: 400,
bold: 700,
heading: 800,
},
extend: {},
},
plugins: [],
};