aboutsummaryrefslogtreecommitdiff
path: root/tailwind.config.js
diff options
context:
space:
mode:
Diffstat (limited to 'tailwind.config.js')
-rwxr-xr-xtailwind.config.js17
1 files changed, 17 insertions, 0 deletions
diff --git a/tailwind.config.js b/tailwind.config.js
new file mode 100755
index 0000000..0a515b8
--- /dev/null
+++ b/tailwind.config.js
@@ -0,0 +1,17 @@
+module.exports = {
+ content: [
+ "./templates/**/*.html"
+ ],
+ theme: {
+ extend: {
+ colors: {
+ 'garage-orange': "#FF9329",
+ 'garage-gray': "#4E4E4E",
+ },
+ },
+ },
+ variants: {
+ width: ["responsive", "hover", "focus"],
+ },
+ plugins: [],
+}