- Promoter can now create an event in draft mode - Place is found based on address and long/lat are automatically deducted from it - Slug is forged using the *slug* npm package instead of custom code
30 lines
796 B
JavaScript
Executable File
30 lines
796 B
JavaScript
Executable File
const { fontFamily } = require("tailwindcss/defaultTheme");
|
|
|
|
/** @type {import('tailwindcss').Config} */
|
|
module.exports = {
|
|
content: [
|
|
"./public/*.html",
|
|
"./app/helpers/**/*.rb",
|
|
"./app/javascript/**/*.js",
|
|
"./app/views/**/*.{erb,haml,html,slim}",
|
|
"./app/components/**/*.{erb,haml,html,slim,js}",
|
|
],
|
|
theme: {
|
|
extend: {
|
|
colors: {
|
|
"brand-primary": "#667eea",
|
|
"brand-secondary": "#764ba2",
|
|
"brand-accent": "#facc15",
|
|
},
|
|
fontFamily: {
|
|
sans: ["Inter", "system-ui", "sans-serif"],
|
|
display: ["DM Sans", "system-ui", "sans-serif"],
|
|
},
|
|
backgroundImage: {
|
|
"gradient-primary": "linear-gradient(135deg, #667eea 0%, #764ba2 100%)",
|
|
},
|
|
},
|
|
},
|
|
plugins: [require("tailwindcss-animate")],
|
|
};
|