-
Notifications
You must be signed in to change notification settings - Fork 0
/
tailwind.config.ts
50 lines (49 loc) · 1.1 KB
/
tailwind.config.ts
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
47
48
49
50
import type { Config } from "tailwindcss";
export default {
content: [
"./app/**/{**,.client,.server}/**/*.{js,jsx,ts,tsx}",
"./src/**/*.{js,jsx,ts,tsx}",
"./public/**/*.html",
],
theme: {
extend: {
// buatkan set color
colors: {
// primari berisi kode angka misal 100 200 300
primary: {
100: "#8e1538",
200: "#6c0a3e",
300: "#4a0d45",
},
// buatkan set untuk dark
dark: {
100: "#2c2c2c",
200: "#1f1f1f",
300: "#111111",
},
// buatkan set untuk light color sampai 600
light: {
100: "#f7f7f7",
200: "#e5e5e5",
300: "#d3d3d3",
400: "#c1c1c1",
500: "#a9a9a9",
600: "#909090",
},
},
fontFamily: {
sans: [
"Inter",
"ui-sans-serif",
"system-ui",
"sans-serif",
"Apple Color Emoji",
"Segoe UI Emoji",
"Segoe UI Symbol",
"Noto Color Emoji",
],
},
},
},
plugins: [],
} satisfies Config;