initial commit of the paytime session frontend

This commit is contained in:
jenz
2026-08-22 14:53:27 +02:00
parent 4ad037bd13
commit 9e8e8378a2
43 changed files with 2936 additions and 0 deletions
@@ -0,0 +1,32 @@
/** @type {import('tailwindcss').Config} */
module.exports = {
content: [
'./app/**/*.{js,ts,jsx,tsx,mdx}',
'./components/**/*.{js,ts,jsx,tsx,mdx}',
],
theme: {
extend: {
colors: {
base: {
DEFAULT: '#0B0F0E', // near-black, slight green cast — server-ops feel
panel: '#121715',
border: '#1F2723',
},
accent: {
DEFAULT: '#3FD37A', // "server online" green
dim: '#245C3E',
},
ink: {
DEFAULT: '#E4EBE7',
muted: '#8A9691',
faint: '#4C5652',
},
},
fontFamily: {
sans: ['Inter', 'ui-sans-serif', 'system-ui', 'sans-serif'],
mono: ['"JetBrains Mono"', 'ui-monospace', 'SFMono-Regular', 'monospace'],
},
},
},
plugins: [],
};