feat: add MIT License and update README for clarity
Some checks failed
CI / prettier (pull_request) Successful in 37s
CI / eslint (pull_request) Successful in 41s
CI / test-build (pull_request) Failing after 51s
CI / Checkstyle Main (pull_request) Successful in 56s

This commit is contained in:
Jan K9f 2025-03-12 14:29:21 +01:00
commit e9159abf3d
Signed by: jank
GPG key ID: 22BEAC760B3333D6
6 changed files with 193 additions and 164 deletions

View file

@ -0,0 +1,32 @@
/** @type {import('tailwindcss').Config} */
module.exports = {
content: [
"./src/**/*.{html,ts}",
],
theme: {
extend: {
colors: {
// Primary Colors
"deep-blue": "#0a1219", // background
"deep-blue-light": "#121e27", // secondary background
"deep-blue-contrast": "#1a2835", // cards, elements
// Accent Colors
"emerald": "#10b981", // primary buttons
"emerald-dark": "#059669", // button hover
"emerald-light": "#34d399", // highlights
// Text Colors
"text-primary": "#ffffff", // white
"text-secondary": "#94a3b8", // light gray
"text-tertiary": "#64748b", // darker gray
// Additional Accents
"accent-yellow": "#fbbf24",
"accent-red": "#ef4444",
"accent-purple": "#8b5cf6",
},
},
},
plugins: [],
};