-
Notifications
You must be signed in to change notification settings - Fork 28
/
tailwind.config.js
41 lines (40 loc) · 1.34 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
/** @type {import('tailwindcss').Config} */
import { noticeAnimations } from "./src/renderer/src/components/notice/NoticeAnimations";
import { songItemAnimations } from "./src/renderer/src/components/song/song-item/SongItemAnimations";
export default {
content: ["./src/**/*.{js,ts,jsx,tsx}"],
theme: {
extend: {
keyframes: {
...songItemAnimations.keyframes,
...noticeAnimations.keyframes,
},
animation: {
...songItemAnimations.animation,
...noticeAnimations.animation,
},
colors: {
transparent: "transparent",
"thick-material": "rgba(var(--color-thick-material), 0.9)",
"regular-material": "rgba(var(--color-regular-material), 0.8)",
"thin-material": "rgba(var(--color-thin-material), 0.5)",
text: "rgba(var(--color-text))",
subtext: "rgba(var(--color-subtext))",
stroke: "rgba(var(--color-stroke), 0.1)",
overlay: "rgba(var(--color-overlay))",
surface: "rgba(var(--color-surface), 0.2)",
black: "rgba(var(--color-black))",
danger: "rgba(var(--color-red))",
green: "rgba(var(--color-green))",
},
boxShadow: {
"glow-blue": "0px 0px 10px #4EBFFF, 0px 0px 28px rgba(78, 191, 255, 0.72)",
},
},
},
variants: {
extend: {},
},
plugins: [],
darkMode: "media",
};