scoresaber-reloaded-v2/tailwind.config.ts

32 lines
744 B
TypeScript
Raw Normal View History

2023-10-19 04:21:35 +00:00
import type { Config } from "tailwindcss";
const defaultTheme = require("tailwindcss/defaultTheme");
2023-10-18 06:58:40 +00:00
const config: Config = {
content: [
2023-10-19 04:21:35 +00:00
"./src/pages/**/*.{js,ts,jsx,tsx,mdx}",
"./src/components/**/*.{js,ts,jsx,tsx,mdx}",
"./src/app/**/*.{js,ts,jsx,tsx,mdx}",
2023-10-18 06:58:40 +00:00
],
theme: {
extend: {
backgroundImage: {
2023-10-19 04:21:35 +00:00
"gradient-radial": "radial-gradient(var(--tw-gradient-stops))",
"gradient-conic":
"conic-gradient(from 180deg at 50% 50%, var(--tw-gradient-stops))",
2023-10-18 06:58:40 +00:00
},
backgroundColor: {
"pp-blue": "#5763c9",
},
2023-10-26 17:14:54 +00:00
textColor: {
"pp-blue": "#9fa8f3",
},
2023-10-18 06:58:40 +00:00
},
2023-10-19 04:21:35 +00:00
screens: {
...defaultTheme.screens,
},
2023-10-18 06:58:40 +00:00
},
plugins: [],
2023-10-19 04:21:35 +00:00
};
export default config;