-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtailwind.config.cjs
83 lines (83 loc) · 2.16 KB
/
tailwind.config.cjs
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
83
/** @type {import('tailwindcss').Config} */
const defaultTheme = require("tailwindcss/defaultTheme");
const colors = require("tailwindcss/colors");
module.exports = {
content: ["./src/**/*.{astro,html,js,jsx,md,mdx,svelte,ts,tsx,vue}"],
theme: {
extend: {
colors: {
black: "#0f1014",
ebony: "#1a1c23",
mirage: "#27292D",
grass: "#279e54",
// blue
blue: {
50: "#ecf4ff",
100: "#ddebff",
200: "#c1d8ff",
300: "#9bbfff",
400: "#7498ff",
500: "#5374ff", //default
600: "#3c51f7",
700: "#2839da",
800: "#2332b0",
900: "#25338a",
950: "#161d50",
},
yellow: {
50: "#fefbec",
100: "#fcf1c9",
200: "#fae28d",
300: "#f7cd52",
400: "#f5ba30", //default
500: "#ee9812",
600: "#d3730c",
700: "#af510e",
800: "#8e3e12",
900: "#753412",
950: "#431a05",
},
green: {
50: "#f1fcf5",
100: "#dff9e8",
200: "#c1f1d2",
300: "#91e4b0",
400: "#59cf85",
500: "#33b463",
600: "#279e54", //default
700: "#207541",
800: "#1e5d37",
900: "#1b4c2e",
950: "#092a17",
},
orange: {
50: "hsl(22, 100%, 96%)",
100: "hsl(25, 100%, 91%)",
200: "hsl(22, 100%, 82%)",
300: "hsl(20, 100%, 71%)",
400: "hsl(16, 100%, 60%)",
500: "hsl(14, 100%, 52%)",
600: "hsl(9, 100%, 50%)", //default
700: "hsl(6, 98%, 40%)",
800: "hsl(4, 87%, 34%)",
900: "hsl(4, 83%, 28%)",
950: "hsl(1, 89%, 15%)",
},
},
borderRadius: {
"4xl": "2rem",
"5xl": "3rem",
"6xl": "5rem",
},
fontFamily: {
display: ["Comico", ...defaultTheme.fontFamily.sans],
sans: ["Switzer", ...defaultTheme.fontFamily.sans],
},
},
},
plugins: [
require("@tailwindcss/forms"),
require("@tailwindcss/typography"),
require("tailwind-scrollbar-hide"),
],
};