forked from Orbits-Inc/orbits
-
Notifications
You must be signed in to change notification settings - Fork 0
/
tailwind.config.js
51 lines (51 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
49
50
51
module.exports = {
purge: [
"./pages/**/*.{js,ts,jsx,tsx}",
"./components/**/*.{js,ts,jsx,tsx}",
"./sections/**/*.{js,jsx,ts,tsx}",
],
darkMode: false,
theme: {
extend: {
colors: {
primary: "#3A3A3A",
secondary: "#1A6EFC",
accent: "#9A9A9A",
white: {
default: "#FFF",
200: "#F4F4F4",
300: "#EAEAEA",
400: "#D3D3D3",
500: "#CBCBCB",
800: "#9A9A9A",
},
black: {
100: "#7C8288",
200: "#76787A",
300: "#616161",
400: "#2F3133",
700: "#313131",
},
blue: {
200: "#CDF0FF",
600: "#2C5DBD",
},
orange: {
200: "#FFF7AD",
600: "#DE8F31",
},
},
fontFamily: {
display: ["Spartan", "sans-serif"],
body: ["Inter", "sans-serif"],
},
animation: {
"spin-slow": "spin 3s linear infinite",
},
},
},
variants: {
extend: {},
},
plugins: [require("@tailwindcss/typography")],
};