summaryrefslogtreecommitdiff
path: root/tailwind.config.js
diff options
context:
space:
mode:
Diffstat (limited to 'tailwind.config.js')
-rw-r--r--tailwind.config.js38
1 files changed, 38 insertions, 0 deletions
diff --git a/tailwind.config.js b/tailwind.config.js
new file mode 100644
index 0000000..05f25ec
--- /dev/null
+++ b/tailwind.config.js
@@ -0,0 +1,38 @@
+/** @type {import('tailwindcss').Config} */
+module.exports = {
+ content: [
+ "./web/templates/**/*.html",
+ "./web/static/js/**/*.js",
+ ],
+ theme: {
+ extend: {
+ colors: {
+ primary: {
+ 50: '#eff6ff',
+ 100: '#dbeafe',
+ 500: '#3b82f6',
+ 600: '#2563eb',
+ 700: '#1d4ed8',
+ },
+ accent: {
+ 50: '#f0f9ff',
+ 100: '#e0f2fe',
+ 500: '#06b6d4',
+ 600: '#0891b2',
+ },
+ trello: '#0079bf',
+ todoist: '#e44332',
+ obsidian: '#7c3aed',
+ plantoeat: '#10b981',
+ },
+ spacing: {
+ '18': '4.5rem',
+ '88': '22rem',
+ },
+ fontFamily: {
+ sans: ['Inter', 'system-ui', 'sans-serif'],
+ },
+ },
+ },
+ plugins: [],
+}