forked from Venstrekoderne/venstrekoderne.github.io
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtailwind.config.js
46 lines (44 loc) · 916 Bytes
/
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
const colors = require('tailwindcss/colors')
module.exports = {
content: ["./**/*.html"],
theme: {
fontFamily: {
sans: ["Sora", "Arial"]
},
colors: {
transparent: 'transparent',
current: 'currentColor',
black: colors.black,
white: colors.white,
gray: colors.gray,
'venstregrønn': {
standard: "#006666",
light: "#008888",
shade: "#005555"
},
'mørk-tavle': {
standard: "#003333",
light: "#004444",
shade: "#002222"
},
'mynte':{
standard: "#51D795",
light: "#71F7B5",
shade: "#31B775"
},
'sol':{
standard: "#FF993E",
light: "#FFA94E",
shade: "#EF892E"
},
'krekling':{
standard: "#8B153D",
light: "#9B254D",
shade: "#7B052D"
},
},
extend: {
},
},
plugins: [],
}