-
Notifications
You must be signed in to change notification settings - Fork 1
/
tailwind.config.js
49 lines (45 loc) · 1021 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
45
46
47
48
49
/** @type {import('tailwindcss').Config} */
const config = {
content: [
"./src/pages/**/*.{js,ts,jsx,tsx,mdx}",
"./src/components/**/*.{js,ts,jsx,tsx,mdx}",
"./src/app/**/*.{js,ts,jsx,tsx,mdx}",
],
theme: {
screens: {
xs: "365px",
sm: "440px",
md: "550px",
lg: "1024px",
xl: "1280px",
},
extend: {
colors: {
// ***** Dark ***** //
"dark-600": "#000000",
"dark-500": "#111212",
"dark-400": "#171717",
"dark-300": "#1b1c1c",
"dark-200": "#262626",
"dark-100": "#404040",
// **************** //
// ***** Light ***** //
"light-500": "#737373",
"light-400": "#a3a3a3",
"light-300": "#d4d4d4",
"light-200": "#e5e5e5",
"light-100": "#f8fafc",
// ***************** //
// ***** Primary ***** //
"primary-200": "#48758a",
"primary-100": "#5a8ca3",
// ******************* //
// ***** Accents ***** //
"bad-accent": "#cf0202",
// ******************* //
},
},
},
plugins: [],
};
export default config;