-
Notifications
You must be signed in to change notification settings - Fork 8
/
tailwind.config.js
66 lines (61 loc) · 1.52 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
/** @type {import('tailwindcss').Config} */
const colors = require('tailwindcss/colors')
module.exports = {
content: [
"./pages/**/*.{js,ts,jsx,tsx,mdx}",
"./components/**/*.{js,ts,jsx,tsx,mdx}",
"./app/**/*.{js,ts,jsx,tsx,mdx}",
],
theme: {
extend: {
backgroundImage: {
"gradient-radial": "radial-gradient(var(--tw-gradient-stops))",
"gradient-conic":
"conic-gradient(from 180deg at 50% 50%, var(--tw-gradient-stops))",
},
},
screens: {
sm: "480px",
md: "768px",
lg: "976px",
xl: "1440px",
},
colors: {
blue1: "#00b4cf",
blue2: "#01869a",
yellow: "#ff9a2a",
green: "#7fbc39",
grey0: "#fafafa",
grey1: "#f5f5f5",
grey2: "#eeeeee",
grey3: "#e0e0e0",
grey4: "#bdbdbd",
grey5: "#9e9e9e",
grey6: "#757575",
grey7: "#616161",
grey8: "#424242",
grey9: "#212121",
gray: colors.slate,
lightBlue0: "#e1f5fe",
lightBlue1: "#b3e5fc",
lightBlue2: "#81d4fa",
lightBlue3: "#4fc3f7",
lightBlue4: "#29b6f6",
lightBlue5: "#03a9f4",
lightBlue6: "#039be5",
lightBlue7: "#0288d1",
lightBlue8: "#0277bd",
lightBlue9: "#01579b",
black: colors.black,
blue: colors.blue,
white: colors.white,
gray: colors.gray,
emerald: colors.emerald,
indigo: colors.indigo,
yellow: colors.yellow,
"gray-light": "#d3dce6",
"border-color-base": "#d9d9d9",
},
},
plugins: [],
};