-
Notifications
You must be signed in to change notification settings - Fork 4
/
tailwind.config.js
43 lines (42 loc) · 1.16 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
const defaultTheme = require('tailwindcss/defaultTheme')
module.exports = {
darkMode: 'media',
content: [
"./themes/**/layouts/**/*.html",
"./layouts/**/*.html",
"./content/**/*.html",
"./content/**/*.md"
],
theme: {
extend: {
colors: {
cream: '#f9f4ed',
'cream-red': '#ffeff5',
'cream-orange': '#ffeacb',
'dark-cream': '#2a2a2a',
'dark-cream-red': '#352724',
'dark-cream-orange': '#30291f',
'lojunu': '#ffa4c5',
'loje': '#ffa893',
'lojelo': '#ffb777',
'jelo': '#cac976',
'graso': '#8ed890',
'laso': '#66dfc2',
'blaso': '#5bddfd',
'lasewi': '#76d0ff',
'lasunu': '#b3beff',
'unu': '#fbadff',
},
fontFamily: {
'sans': ["Inter", ...defaultTheme.fontFamily.sans, "linja insa"],
'linja-insa': ["linja insa", "Inter", ...defaultTheme.fontFamily.sans],
'linja-insa-luka': ["linja insa luka", "Inter", ...defaultTheme.fontFamily.sans],
}
},
},
plugins: [
require('@tailwindcss/aspect-ratio'),
require('@tailwindcss/forms'),
require('@tailwindcss/typography'),
]
}