2022-04-28 09:58:07 +02:00
|
|
|
// See the Tailwind configuration guide for advanced usage
|
|
|
|
// https://tailwindcss.com/docs/configuration
|
2023-11-07 08:52:09 +01:00
|
|
|
|
|
|
|
const plugin = require("tailwindcss/plugin")
|
|
|
|
const fs = require("fs")
|
|
|
|
const path = require("path")
|
|
|
|
|
|
|
|
const homepage_colors = {
|
2022-04-28 16:04:43 +02:00
|
|
|
transparent: 'transparent',
|
|
|
|
current: 'currentColor',
|
2023-11-07 08:52:09 +01:00
|
|
|
indigo: '#540D6E',
|
|
|
|
'red-crayola': '#ee4266',
|
2022-04-28 16:04:43 +02:00
|
|
|
sunglow: '#ffd23f',
|
|
|
|
honeydew: '#f3fcf0',
|
2023-11-07 08:52:09 +01:00
|
|
|
'black-olive': '#1f271b',
|
|
|
|
brand: "#540D6E"
|
2022-04-28 16:04:43 +02:00
|
|
|
}
|
|
|
|
|
2022-04-28 09:58:07 +02:00
|
|
|
module.exports = {
|
|
|
|
content: [
|
2023-11-07 08:52:09 +01:00
|
|
|
"./js/**/*.js",
|
|
|
|
"../lib/*_web.ex",
|
|
|
|
"../lib/*_web/**/*.*ex"
|
2022-04-28 09:58:07 +02:00
|
|
|
],
|
|
|
|
theme: {
|
2022-04-28 16:04:43 +02:00
|
|
|
extend: {
|
2023-11-07 08:52:09 +01:00
|
|
|
colors: homepage_colors,
|
2022-04-28 16:04:43 +02:00
|
|
|
fontFamily: {
|
2023-11-07 08:52:09 +01:00
|
|
|
sans: ["Inter var", "sans-serif"]
|
2022-04-28 16:04:43 +02:00
|
|
|
}
|
|
|
|
},
|
|
|
|
},
|
|
|
|
daisyui: {
|
|
|
|
themes: [{
|
|
|
|
mytheme: {
|
2023-11-07 08:52:09 +01:00
|
|
|
"primary": homepage_colors.indigo,
|
|
|
|
"secondary": homepage_colors['red-crayola'],
|
|
|
|
"accent": homepage_colors.sunglow,
|
|
|
|
"neutral": homepage_colors['black-olive'],
|
2022-04-28 16:04:43 +02:00
|
|
|
"base-100": "#fff",
|
|
|
|
"info": "#79D3E7",
|
|
|
|
"success": "#20BC5E",
|
|
|
|
"warning": "#E79127",
|
|
|
|
"error": "#F6282B",
|
|
|
|
}
|
|
|
|
}]
|
2022-04-28 09:58:07 +02:00
|
|
|
},
|
|
|
|
plugins: [
|
2023-11-07 08:52:09 +01:00
|
|
|
require("@tailwindcss/forms"),
|
2022-04-28 16:04:43 +02:00
|
|
|
require("daisyui"),
|
2023-11-07 08:52:09 +01:00
|
|
|
// Allows prefixing tailwind classes with LiveView classes to add rules
|
|
|
|
// only when LiveView classes are applied, for example:
|
|
|
|
//
|
|
|
|
// <div class="phx-click-loading:animate-ping">
|
|
|
|
//
|
|
|
|
plugin(({addVariant}) => addVariant("phx-no-feedback", [".phx-no-feedback&", ".phx-no-feedback &"])),
|
|
|
|
plugin(({addVariant}) => addVariant("phx-click-loading", [".phx-click-loading&", ".phx-click-loading &"])),
|
|
|
|
plugin(({addVariant}) => addVariant("phx-submit-loading", [".phx-submit-loading&", ".phx-submit-loading &"])),
|
|
|
|
plugin(({addVariant}) => addVariant("phx-change-loading", [".phx-change-loading&", ".phx-change-loading &"])),
|
|
|
|
|
|
|
|
// Embeds Hero Icons (https://heroicons.com) into your app.css bundle
|
|
|
|
// See your `CoreComponents.icon/1` for more information.
|
|
|
|
//
|
|
|
|
plugin(function({matchComponents, theme}) {
|
|
|
|
let iconsDir = path.join(__dirname, "./vendor/heroicons/optimized")
|
|
|
|
let values = {}
|
|
|
|
let icons = [
|
|
|
|
["", "/24/outline"],
|
|
|
|
["-solid", "/24/solid"],
|
|
|
|
["-mini", "/20/solid"]
|
|
|
|
]
|
|
|
|
icons.forEach(([suffix, dir]) => {
|
|
|
|
fs.readdirSync(path.join(iconsDir, dir)).map(file => {
|
|
|
|
let name = path.basename(file, ".svg") + suffix
|
|
|
|
values[name] = {name, fullPath: path.join(iconsDir, dir, file)}
|
|
|
|
})
|
|
|
|
})
|
|
|
|
matchComponents({
|
|
|
|
"hero": ({name, fullPath}) => {
|
|
|
|
let content = fs.readFileSync(fullPath).toString().replace(/\r?\n|\r/g, "")
|
|
|
|
return {
|
|
|
|
[`--hero-${name}`]: `url('data:image/svg+xml;utf8,${content}')`,
|
|
|
|
"-webkit-mask": `var(--hero-${name})`,
|
|
|
|
"mask": `var(--hero-${name})`,
|
|
|
|
"background-color": "currentColor",
|
|
|
|
"vertical-align": "middle",
|
|
|
|
"display": "inline-block",
|
|
|
|
"width": theme("spacing.5"),
|
|
|
|
"height": theme("spacing.5")
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}, {values})
|
|
|
|
})
|
2022-04-28 09:58:07 +02:00
|
|
|
]
|
|
|
|
}
|