-
Notifications
You must be signed in to change notification settings - Fork 0
/
tailwind.config.js
36 lines (35 loc) · 905 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
/** @type {import('tailwindcss').Config} */
// tailwind.config.js
const { nextui } = require("@nextui-org/react");
export default {
content: [
"./index.html",
"./src/**/*.{js,ts,jsx,tsx}",
"./node_modules/@nextui-org/theme/dist/**/*.{js,ts,jsx,tsx}",
],
theme: {
fontFamily: {
sans: ["ui-sans-serif", "system-ui"],
serif: ["ui-serif", "Georgia"],
mono: ["ui-monospace", "SFMono-Regular"],
display: ["Oswald"],
body: ["Open Sans"],
},
colors: {
transparent: "transparent",
current: "currentColor",
"hijau-tua": "#1A5319",
"hijau-muda": "#508D4E",
"hijau-paling-muda": "#80AF81",
"hijau-putih": "#D6EFD8",
"abu-muda": "#B8B8B8",
"abu-gelap": "#808080",
white: "#FFFFFF",
black: "#000000",
red: "#DC143C",
},
extend: {},
},
darkMode: "class",
plugins: [nextui()],
};