-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtailwind.config.js
More file actions
37 lines (37 loc) · 844 Bytes
/
tailwind.config.js
File metadata and controls
37 lines (37 loc) · 844 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
34
35
36
37
/** @type {import('tailwindcss').Config} */
export default {
content: ["./src/**/*.{js,jsx,ts,tsx}"],
theme: {
extend: {
colors: {
travertine: {
50: "#ffffff",
100: "#fffffc",
200: "#fffffa",
300: "#fffff7",
400: "#fcfced",
500: "#fcfbe7",
600: "#e3dfbc",
700: "#bdb382",
800: "#968753",
900: "#735d2f",
950: "#4a3514",
},
shark: {
50: "#f2f4f5",
100: "#e6e9eb",
200: "#bdc5c9",
300: "#99a2a8",
400: "#586169",
500: "#1f2328",
600: "#191d24",
700: "#12171f",
800: "#0c111a",
900: "#060a12",
950: "#03060d",
},
},
},
},
plugins: [require("@tailwindcss/forms")],
};