-
Notifications
You must be signed in to change notification settings - Fork 0
/
tailwind.config.js
44 lines (44 loc) · 1018 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
/** @type {import('tailwindcss').Config} */
module.exports = {
content: [
"./pages/**/*.{js,ts,jsx,tsx}",
"./components/**/*.{js,ts,jsx,tsx}",
"./app/**/*.{js,ts,jsx,tsx}",
],
theme: {
extend: {
fontFamily: {
sans: ["Sequel Sans", "Inter", "sans-serif"],
},
colors: {
primary: {
DEFAULT: "#190A2D",
50: "#5924A0",
100: "#532195",
200: "#471D80",
300: "#3C186C",
400: "#301357",
500: "#250F42",
600: "#190A2D",
700: "#0D0518",
800: "#020103",
900: "#000000",
},
tan: {
DEFAULT: "#F4EFE9",
50: "#FFFFFF",
100: "#FEFEFD",
200: "#FBF9F7",
300: "#F7F4F0",
400: "#F4EFE9",
500: "#F1EAE2",
600: "#EDE5DB",
700: "#EAE0D5",
800: "#E6DBCE",
900: "#E3D6C7",
},
},
},
},
plugins: [require("@tailwindcss/forms")],
};