-
-
Notifications
You must be signed in to change notification settings - Fork 14
/
Copy pathtailwind.config.js
45 lines (42 loc) · 1.11 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
// See the Tailwind configuration guide for advanced usage
// https://tailwindcss.com/docs/configuration
let plugin = require("tailwindcss/plugin");
const defaultTheme = require('tailwindcss/defaultTheme')
module.exports = {
content: ["./js/**/*.js", "./lib/**/*.ex", "_data/**/*.yaml", "./assets/**/*.css", "./_posts/**/*.md"],
theme: {
extend: {
colors: {
'gold': {
'50': '#faf9ec',
'100': '#f4f1cd',
'200': '#ebe19d',
'300': '#dfcb65',
'400': '#d5b43a',
'500': '#c59e2d',
'600': '#b78727',
'700': '#885c20',
'800': '#724b21',
'900': '#623f21',
'950': '#382110',
}
},
fontFamily: {
'sans': ['"Inter"', ...defaultTheme.fontFamily.sans],
'fancy': ['"Rubik"', ...defaultTheme.fontFamily.sans],
},
typography: {
DEFAULT: {
css: {
pre: false,
},
},
},
},
},
plugins: [
require("@tailwindcss/typography"),
require("@tailwindcss/forms"),
require("@tailwindcss/container-queries"),
],
};