summaryrefslogtreecommitdiffstats
path: root/tailwind.config.js
diff options
context:
space:
mode:
Diffstat (limited to 'tailwind.config.js')
-rw-r--r--tailwind.config.js35
1 files changed, 35 insertions, 0 deletions
diff --git a/tailwind.config.js b/tailwind.config.js
new file mode 100644
index 0000000..d36b0a8
--- /dev/null
+++ b/tailwind.config.js
@@ -0,0 +1,35 @@
+module.exports = {
+ content: [
+ './themes/**/layouts/**/*.html',
+ './themes/**/content/**/*.md',
+ './layouts/**/*.html',
+ './content/**/*.md',
+ ],
+ theme: {
+ extend: {
+ colors: {
+ bg: 'var(--bg)',
+ 'bg2': 'var(--bg2)',
+ surface: 'var(--surface)',
+ border: 'var(--border)',
+ accent: 'var(--accent)',
+ 'accent2': 'var(--accent2)',
+ 'accent-glow': 'var(--accent-glow)',
+ text: 'var(--text)',
+ 'text-dim': 'var(--text-dim)',
+ muted: 'var(--muted)',
+ },
+ fontFamily: {
+ body: ['IBM Plex Sans', 'sans-serif'],
+ mono: ['JetBrains Mono', 'monospace'],
+ oxanium: ['Oxanium', 'monospace'],
+ },
+ opacity: {
+ 80: '0.8',
+ },
+ },
+ },
+ plugins: [
+ require('@tailwindcss/typography'),
+ ],
+}