30 lines
722 B
TypeScript
30 lines
722 B
TypeScript
import type { Config } from "tailwindcss";
|
|
|
|
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: {
|
|
'pixel-purple': '#0a0515',
|
|
'pixel-dark': '#000000',
|
|
'pixel-red': '#8b0000',
|
|
'pixel-gold': '#daa520',
|
|
'pixel-brown': '#3d2817',
|
|
'pixel-dark-purple': '#1a0d2e',
|
|
},
|
|
fontFamily: {
|
|
'pixel': ['Courier New', 'monospace'],
|
|
'gaming': ['var(--font-orbitron)', 'sans-serif'],
|
|
'gaming-subtitle': ['var(--font-rajdhani)', 'sans-serif'],
|
|
},
|
|
},
|
|
},
|
|
plugins: [],
|
|
};
|
|
export default config;
|
|
|