mirror of
https://github.com/SrIzan10/osu-radio.git
synced 2026-05-01 10:55:12 +00:00
40 lines
1.2 KiB
JavaScript
40 lines
1.2 KiB
JavaScript
/** @type {import('tailwindcss').Config} */
|
|
import { noticeAnimations } from "./src/renderer/src/components/notice/NoticeAnimations";
|
|
|
|
export default {
|
|
content: ["./src/**/*.{js,ts,jsx,tsx}"],
|
|
theme: {
|
|
extend: {
|
|
keyframes: {
|
|
...noticeAnimations.keyframes,
|
|
},
|
|
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), 0.7)",
|
|
stroke: "rgba(var(--color-stroke), 0.1)",
|
|
overlay: "rgba(var(--color-overlay), 0.55)",
|
|
accent: "rgba(var(--color-accent))",
|
|
surface: "rgba(var(--color-surface), 0.2)",
|
|
black: "rgba(var(--color-black))",
|
|
red: "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",
|
|
};
|