JellyfinApp/tailwind.config.js

28 lines
528 B
JavaScript

/** @type {import('tailwindcss').Config} */
export default {
content: [
"./index.html",
"./src/**/*.{js,ts,jsx,tsx}",
],
theme: {
extend: {
container: {
center: true,
padding: "1rem",
},
colors: {
background: "#121212",
surface: "#1E1E1E",
surfaceLight: "#2A2A2A",
primary: "#BB86FC",
secondary: "#03DAC6",
text: {
DEFAULT: "#E0E0E0",
muted: "#A0A0A0",
},
},
},
},
plugins: [],
}