forked from bitcoin-dev-project/bitcoin-dev-project
-
Notifications
You must be signed in to change notification settings - Fork 0
/
tailwind.config.ts
63 lines (58 loc) · 1.7 KB
/
tailwind.config.ts
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
52
53
54
55
56
57
58
59
60
61
62
63
import type { Config } from "tailwindcss";
const config: Config = {
content: [
"./pages/**/*.{js,ts,jsx,tsx,mdx}",
"./components/**/*.{js,ts,jsx,tsx,mdx}",
"./app/**/*.{js,ts,jsx,tsx,mdx}",
],
theme: {
colors: {
"bg-color": "#f8f5ee",
orange: "#e77429",
green: "#24b292",
"bright-cyan": "#30f6ca",
"dark-orange": "#e77429",
brown: "#b47235",
yellow: "#fab544",
"light-orange": "#ffd796",
"pale-orange": "#fff2e4",
"bright-orange": "#f7a940",
grey: "dimgrey",
dark: "#333",
black: "#212529",
white: "#FFFFFF",
"light-grey": "#898989",
},
extend: {
backgroundImage: {
"gradient-radial": "radial-gradient(var(--tw-gradient-stops))",
"gradient-conic":
"conic-gradient(from 180deg at 50% 50%, var(--tw-gradient-stops))",
"gradient-94": "linear-gradient(94deg, var(--tw-gradient-stops))",
"gradient-130": "linear-gradient(130deg, var(--tw-gradient-stops))",
},
boxShadow: {
normal: "0px 4px 8px 0px rgba(0, 0, 0, 0.08)",
raised: "0px 4px 16px 4px rgba( 249, 206, 159, 0.8)",
},
fontFamily: {
brawler: ["var(--brawler-font)"],
inter: ["var(--inter-font)"],
},
},
screens: {
xl: { max: "1279px" },
// => @media (max-width: 1279px) { ... }
lg: { max: "1023px" },
// => @media (max-width: 1023px) { ... }
md: { max: "767px" },
// => @media (max-width: 767px) { ... }
sm: { max: "639px" },
// => @media (max-width: 639px) { ... }
xs: { max: "500px" },
// => @media (max-width: 500px) { ... }
},
},
plugins: [],
};
export default config;