Files
dwroller/tailwind.config.js
Alex b47065edbf Moves GM player management to PlayerTab
Centralizes all GM controls—add, update, delete player, set RP or renown, reset player passwords—into the PlayerTab for a more intuitive workflow. Removes GM panel logic and duplication from the shop view, clarifies GM access, and improves error feedback on player list loading. Adds a backend health check endpoint and minor UI polish.
2025-08-15 11:12:49 +02:00

50 lines
1.0 KiB
JavaScript
Executable File

/** @type {import('tailwindcss').Config} */
module.exports = {
content: ['./src/**/*.{js,jsx,ts,tsx}', './public/index.html'],
theme: {
extend: {
colors: {
slate: {
950: '#0c1525',
900: '#0e192c',
800: '#13203a',
700: '#1c2c4f',
600: '#233561',
500: '#2c4072',
400: '#495b8c',
300: '#6476a6',
200: '#98a5c6',
100: '#cbd3e4',
},
blue: {
700: '#1a4b91',
600: '#2260b8',
500: '#2872df',
},
emerald: {
600: '#059669',
500: '#10b981',
},
rose: {
600: '#c11d38',
500: '#e11d48',
},
amber: {
600: '#b45309',
500: '#d97706',
},
},
spacing: {
'1.5': '0.375rem',
},
maxHeight: {
'520': '520px',
},
backgroundImage: {
'gradient-dark': 'linear-gradient(to bottom right, var(--tw-gradient-stops))',
},
},
},
plugins: [],
}