-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathtailwind.config.js
82 lines (77 loc) · 2.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
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
/** @type {import('tailwindcss').Config} */
const config = {
content: ["./src/**/*.{js,ts,jsx,tsx,mdx}"],
darkMode: "class",
theme: {
container: {
center: true,
padding: "1rem",
},
colors: {
current: "currentColor",
transparent: "transparent",
white: "#FFFFFF",
grey: "#363A47",
lightgrey: "#ECEDF0",
"hero-link-bg": "#ECEDF0BB",
"hero-link-bg-hover": "#363A47",
black: "#000000",
dark: "#1D2144",
primary: "#0A7EA4",
"primary-dark": "#0A7EA4",
secondary: "#4B4B4B",
"feature-odd-bg": "#ECEDF0",
"feature-odd-bg-dark": "#43475A",
"link-text": "#0A7EA4",
"link-text-dark": "#0A7EA4",
"dark-theme": "#282B37",
"light-theme": "#f9f9f9",
"body-color": "#959CB1",
"body-color-dark": "#d5d5d5",
"editor-bg": "#24272F",
"editor-border": "#C3D7E7",
"editor-border-dark": "#455969",
"editor-title": "#0A7EA4",
"code-bg": "#efefef",
"code-bg-dark": "#262626",
"code-text": "#0A7EA4",
"code-text-dark": "#37b5d3",
"mdx-code-text": "#B58900",
"mdx-code-text-dark": "#d6a500",
},
screens: {
xs: "450px",
// => @media (min-width: 450px) { ... }
sm: "575px",
// => @media (min-width: 576px) { ... }
md: "768px",
// => @media (min-width: 768px) { ... }
lg: "992px",
// => @media (min-width: 992px) { ... }
xl: "1200px",
// => @media (min-width: 1200px) { ... }
"2xl": "1300px",
// => @media (min-width: 1400px) { ... }
"3xl": "1600px",
},
maxWidth: {
centerColumnMD: 800,
centerColumnXL: 700,
centerColumn2XL: 900,
centerColumn3XL: 1000,
},
extend: {
boxShadow: {
signUp: "0px 5px 10px rgba(4, 10, 34, 0.2)",
one: "0px 2px 3px rgba(7, 7, 77, 0.05)",
sticky: "inset 0 -1px 0 0 rgba(0, 0, 0, 0.1)",
},
fontFamily: {
sans: ["var(--font-roboto)"],
mono: ["var(--font-roboto-mono)"],
},
},
},
plugins: [],
};
export default config;