-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathtailwind.config.js
More file actions
33 lines (32 loc) · 879 Bytes
/
tailwind.config.js
File metadata and controls
33 lines (32 loc) · 879 Bytes
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
import { nextui } from "@nextui-org/theme";
/** @type {import('tailwindcss').Config} */
module.exports = {
content: [
"./components/**/*.{js,ts,jsx,tsx,mdx}",
"./app/**/*.{js,ts,jsx,tsx,mdx}",
"./node_modules/@nextui-org/theme/dist/**/*.{js,ts,jsx,tsx}",
],
theme: {
extend: {
fontFamily: {
sans: ["var(--font-sans)"],
mono: ["var(--font-mono)"],
},
colors: {
darkGreen: '#415E15', // Hijau tua
lightGreen: '#87C42B', // Hijau muda
forestGreen: '#142E38',
Purple: '#B0689A', // core
softBlue: '#618B98', // cmd
softGreen: '#4D7E5F', // atc
softBrown: '#A49A67', // mlc
softRed: '#AC6565', // rdc
softMix: '#6965AC', //hrd
softDarkBlue: '#4F61D9', //ddc
},
},
},
darkMode: "class",
darkMode: "class",
plugins: [nextui()],
};