-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathtailwind.config.js
47 lines (46 loc) · 983 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
47
const colors = require("tailwindcss/colors");
module.exports = {
content: [
"./pages/**/*.{js,ts,jsx,tsx}",
"./components/**/*.{js,ts,jsx,tsx}",
],
theme: {
extend: {},
fontFamily: {
sans: ["Helvetica Neue"],
},
colors: {
white: colors.white,
gray: colors.gray,
black: colors.black,
red: colors.red,
penduduk: {
DEFAULT: "#FC0002",
50: "#FFB5B5",
100: "#FFA0A1",
200: "#FF7778",
300: "#FF4F50",
400: "#FF2628",
500: "#FC0002",
600: "#C40002",
700: "#8C0001",
800: "#540001",
900: "#1C0000",
},
resikoBanjir: {
DEFAULT: "#08306b",
50: "#3A84F0",
100: "#6baed6",
200: "#4292c6",
300: "#2171b5",
400: "#08519c",
500: "#08306b",
600: "#041937",
700: "#000103",
800: "#000000",
900: "#000000",
},
},
},
plugins: [],
};