initial commit of the paytime session frontend
This commit is contained in:
@@ -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: [],
|
||||
};
|
||||
Reference in New Issue
Block a user