chiya/assets/tailwind.config.js

107 lines
4.4 KiB
JavaScript
Raw Normal View History

2023-03-05 16:07:40 +01:00
// See the Tailwind configuration guide for advanced usage
// https://tailwindcss.com/docs/configuration
const plugin = require("tailwindcss/plugin")
2023-03-13 03:27:00 +01:00
const colors = require("tailwindcss/colors")
2023-03-05 16:07:40 +01:00
const fs = require("fs")
const path = require("path")
module.exports = {
content: [
"./js/**/*.js",
"../lib/*_web.ex",
"../lib/*_web/**/*.*ex"
],
darkMode: ['class', '[data-mode="dark"]'],
2023-03-05 16:07:40 +01:00
theme: {
2023-09-09 10:24:22 +02:00
container: { center: true },
extend: {
colors: {
2023-09-21 13:21:01 +02:00
primary: colors.blue,
2023-09-11 20:16:37 +02:00
neutral: colors.slate,
foreground: 'rgb(var(--color-foreground) / <alpha-value>)',
background: 'rgb(var(--color-background) / <alpha-value>)'
2023-09-11 23:19:44 +02:00
},
typography: ({ theme }) => ({
2023-09-12 20:43:25 +02:00
inhji: {
2023-09-11 23:19:44 +02:00
css: {
2023-09-12 20:43:25 +02:00
'--tw-prose-lead': theme('colors.neutral[700]'),
2023-09-21 13:06:30 +02:00
'--tw-prose-links': theme('colors.neutral[900]'),
2023-09-12 20:43:25 +02:00
'--tw-prose-counters': theme('colors.neutral[600]'),
'--tw-prose-bullets': theme('colors.neutral[400]'),
'--tw-prose-hr': theme('colors.neutral[300]'),
'--tw-prose-quotes': theme('colors.neutral[900]'),
'--tw-prose-quote-borders': theme('colors.neutral[300]'),
'--tw-prose-captions': theme('colors.neutral[700]'),
'--tw-prose-code': theme('colors.neutral[900]'),
'--tw-prose-pre-code': theme('colors.neutral[100]'),
'--tw-prose-pre-bg': theme('colors.neutral[200]'),
'--tw-prose-th-borders': theme('colors.neutral[300]'),
'--tw-prose-td-borders': theme('colors.neutral[200]'),
'--tw-prose-invert-lead': theme('colors.neutral[300]'),
2023-09-21 13:06:30 +02:00
'--tw-prose-invert-links': theme('colors.white'),
2023-09-12 20:43:25 +02:00
'--tw-prose-invert-counters': theme('colors.neutral[400]'),
'--tw-prose-invert-bullets': theme('colors.neutral[600]'),
'--tw-prose-invert-hr': theme('colors.neutral[700]'),
'--tw-prose-invert-quotes': theme('colors.neutral[100]'),
'--tw-prose-invert-quote-borders': theme('colors.neutral[700]'),
'--tw-prose-invert-captions': theme('colors.neutral[400]'),
2023-09-11 23:19:44 +02:00
'--tw-prose-invert-code': theme('colors.white'),
2023-09-12 20:43:25 +02:00
'--tw-prose-invert-pre-code': theme('colors.neutral[300]'),
2023-09-11 23:19:44 +02:00
'--tw-prose-invert-pre-bg': 'rgb(0 0 0 / 50%)',
2023-09-12 20:43:25 +02:00
'--tw-prose-invert-th-borders': theme('colors.neutral[600]'),
'--tw-prose-invert-td-borders': theme('colors.neutral[700]'),
2023-09-11 23:19:44 +02:00
},
},
}),
2023-09-09 10:24:22 +02:00
}
2023-03-05 16:07:40 +01:00
},
plugins: [
require("@tailwindcss/forms"),
2023-03-13 03:27:00 +01:00
require("@tailwindcss/typography"),
2023-03-05 16:07:40 +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, "../priv/hero_icons/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})
})
]
}