-
Notifications
You must be signed in to change notification settings - Fork 0
/
tailwind.config.cjs
41 lines (39 loc) · 1.05 KB
/
tailwind.config.cjs
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
/** @type {import('tailwindcss').Config}*/
const production = process.env.ENV === "prod";
const defaultTheme = require("tailwindcss/defaultTheme");
const config = {
content: {
files: ["*.html", "./src/**/*.rs"],
},
darkMode: "class",
theme: {
extend: {
fontFamily: {
sans: ["Noto Sans", ...defaultTheme.fontFamily.sans],
},
colors: {
primary: {
DEFAULT: "#8fc46a",
'50': '#f2f8ee',
'100': '#e7f2df',
'200': '#d1e7c2',
'300': '#bbdba4',
'400': '#a5d087',
'500': '#8fc46a',
'600': '#71b046',
'700': '#588836',
'800': '#3e6026',
'900': '#243816'
},
},
},
},
variants: {
extend: {},
},
plugins: [
require('@tailwindcss/typography'),
require('@tailwindcss/forms'),
],
};
module.exports = config;