From 8d60c7f93407988ee0232ea90980028f299cb0f3 Mon Sep 17 00:00:00 2001 From: srdusr Date: Fri, 26 Sep 2025 13:39:28 +0200 Subject: Initial Commit --- web/tailwind.config.js | 19 +++++++++++++++++++ 1 file changed, 19 insertions(+) create mode 100644 web/tailwind.config.js (limited to 'web/tailwind.config.js') diff --git a/web/tailwind.config.js b/web/tailwind.config.js new file mode 100644 index 0000000..8a2477d --- /dev/null +++ b/web/tailwind.config.js @@ -0,0 +1,19 @@ +/** @type {import('tailwindcss').Config} */ +export default { + content: [ + "./index.html", + "./src/**/*.{js,ts,jsx,tsx}", + ], + theme: { + extend: { + colors: { + primary: 'var(--primary)', + background: 'var(--background)', + text: 'var(--text)', + error: 'var(--error)', + success: 'var(--success)', + }, + }, + }, + plugins: [], +} \ No newline at end of file -- cgit v1.2.3