Init
This commit is contained in:
29
tailwind.config.ts
Normal file
29
tailwind.config.ts
Normal file
@@ -0,0 +1,29 @@
|
||||
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;
|
||||
|
||||
Reference in New Issue
Block a user