-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtailwind.config.js
48 lines (47 loc) · 1.07 KB
/
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
48
import preline from "preline/plugin";
import twForms from "@tailwindcss/forms";
/** @type {import("tailwindcss").Config} */
export default {
darkMode: ["class"],
content: [
"./entrypoints/**/*.{js,jsx,ts,tsx}",
"components/**/*.{ts,tsx}",
"./node_modules/preline/preline.js",
],
theme: {
extend: {
fontFamily: {
sans: ["Figtree", "sans-serif"],
},
colors: {
"icy-blue": {
50: "#ebffef",
100: "#cefbf",
200: "#a2f5f",
300: "#63eafd",
400: "#00b1d0",
500: "#0a7694",
600: "#125f78",
700: "#0c465f",
800: "#093446",
900: "#072735",
950: "#051d27",
},
daintree: {
50: "#f6fbef",
100: "#e2eef7",
200: "#c1d5de",
300: "#9eb7ca",
400: "#7b9aaa",
500: "#3b6273",
600: "#2d4f5d",
700: "#203c49",
800: "#102832",
900: "#09171d",
950: "#071116",
},
},
},
},
plugins: [preline, twForms],
};