aboutsummaryrefslogtreecommitdiff
path: root/apps/dreki_web/assets/tailwind.config.js
diff options
context:
space:
mode:
Diffstat (limited to 'apps/dreki_web/assets/tailwind.config.js')
-rw-r--r--apps/dreki_web/assets/tailwind.config.js26
1 files changed, 26 insertions, 0 deletions
diff --git a/apps/dreki_web/assets/tailwind.config.js b/apps/dreki_web/assets/tailwind.config.js
new file mode 100644
index 0000000..395651b
--- /dev/null
+++ b/apps/dreki_web/assets/tailwind.config.js
@@ -0,0 +1,26 @@
+const colors = require('tailwindcss/colors')
+
+module.exports = {
+ content: [
+ './app.css',
+ './app.js',
+ '../templates/*.dtl',
+ '../src/**/*.erl'
+ ],
+ theme: {
+ extend: {
+ colors: {
+ primary: colors.rose,
+ secondary: colors.stone,
+ gray: colors.stone,
+ green: colors.emerald,
+ yellow: colors.amber,
+ purple: colors.violet,
+ red: colors.rose,
+ }
+ },
+ },
+ plugins: [
+ require('@tailwindcss/typography'),
+ ],
+ }