-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathtailwind.config.cjs
44 lines (44 loc) · 1.43 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
/** @type {import('tailwindcss').Config} */
module.exports = {
content: ["./src/**/*.{astro,html,js,jsx,md,mdx,svelte,ts,tsx,vue}"],
theme: {
extend: {
colors: {
accent: {
light: "rgb(179, 30, 87)",
"light-hover": "rgb(240, 42, 118)",
dark: "rgb(230, 115, 159)",
"dark-hover": "rgb(184, 62, 108)",
},
dimmed: {
light: "rgba(0, 0, 0, 0.7);",
dark: "rgba(255, 255, 255, 0.7);",
},
social: {
light: "rgba(255, 255, 255, 0.8);",
dark: "rgba(0, 0, 0, 0.8);",
vk: "#0077FF",
telegram: "#54A9EB",
ig: {
start: "#833AB4",
middle: "#F56040",
end: "#FFDC80",
},
twitter: "#1D9BF1",
discord: "#5765F3",
lastfm: "#D60603",
github: "#181515",
codestats: "#3E4053",
},
background: {
light: "rgb(255, 255, 255)",
dark: "rgb(18, 18, 18)",
},
},
},
fontFamily: {
custom: ["Ubuntu", "sans-serif"],
},
},
plugins: [],
};