forked from NongMindHouse/SusTrack
-
Notifications
You must be signed in to change notification settings - Fork 0
/
tailwind.config.js
39 lines (39 loc) · 976 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
/** @type {import('tailwindcss').Config} */
export default {
content: ["./index.html", "./src/**/*.{js,ts,jsx,tsx}"],
theme: {
extend: {
fontFamily: {
"Noto-Sans": ["Noto Sans Thai", "sans-serif"],
"IBM-Plex-Sans": ["IBM Plex Sans", "sans-serif"],
},
colors: {
navy: "#0A2468",
skyblue: "#28B6EF",
lightblue: "#3558F0",
lightgreen: "#11C277",
sdg1: "#e5233d",
sdg2: "#dda73a",
sdg3: "#4CA146",
sdg4: "#C7212F",
sdg5: "#EF402D",
sdg6: "#27BFE6",
sdg7: "#FBC412",
sdg8: "#A31C44",
sdg9: "#F26A2E",
sdg10: "#E01483",
sdg11: "#F89D2A",
sdg12: "#BF8D2C",
sdg13: "#407F46",
sdg14: "#1F97D4",
sdg15: "#59BA47",
sdg16: "#136A9F",
sdg17: "#14496B",
},
backgroundImage: {
hero: "url('/images/bangkok-map-blur.png')",
},
},
},
plugins: [],
};