Initial open-source self-hosted Songs2YT edition
This commit is contained in:
@@ -0,0 +1,28 @@
|
||||
import type { Config } from "tailwindcss";
|
||||
import typography from "@tailwindcss/typography";
|
||||
|
||||
const config: Config = {
|
||||
content: [
|
||||
"./pages/**/*.{js,ts,jsx,tsx,mdx}",
|
||||
"./components/**/*.{js,ts,jsx,tsx,mdx}",
|
||||
"./app/**/*.{js,ts,jsx,tsx,mdx}",
|
||||
],
|
||||
theme: {
|
||||
extend: {
|
||||
colors: {
|
||||
surface: {
|
||||
DEFAULT: "#1a1a2e",
|
||||
light: "#252540",
|
||||
dark: "#12121f",
|
||||
},
|
||||
accent: {
|
||||
DEFAULT: "#4a9eff",
|
||||
hover: "#3a8eef",
|
||||
},
|
||||
},
|
||||
},
|
||||
},
|
||||
plugins: [typography],
|
||||
};
|
||||
|
||||
export default config;
|
||||
Reference in New Issue
Block a user