customize Tailwind a bit
This commit is contained in:
@@ -1,74 +1,107 @@
|
|||||||
// See the Tailwind configuration guide for advanced usage
|
// See the Tailwind configuration guide for advanced usage
|
||||||
// https://tailwindcss.com/docs/configuration
|
// https://tailwindcss.com/docs/configuration
|
||||||
|
|
||||||
const plugin = require("tailwindcss/plugin")
|
const plugin = require('tailwindcss/plugin');
|
||||||
const fs = require("fs")
|
const fs = require('fs');
|
||||||
const path = require("path")
|
const path = require('path');
|
||||||
|
|
||||||
module.exports = {
|
module.exports = {
|
||||||
content: [
|
content: ['./js/**/*.js', '../lib/labelmaker_web.ex', '../lib/labelmaker_web/**/*.*ex'],
|
||||||
"./js/**/*.js",
|
darkmode: 'media',
|
||||||
"../lib/labelmaker_web.ex",
|
|
||||||
"../lib/labelmaker_web/**/*.*ex"
|
|
||||||
],
|
|
||||||
theme: {
|
theme: {
|
||||||
extend: {
|
extend: {
|
||||||
colors: {
|
colors: {
|
||||||
brand: "#FD4F00",
|
primary: '#6495ED', // cornflowerblue
|
||||||
}
|
bg: {
|
||||||
|
light: '#F0F8FF', // aliceblue
|
||||||
|
dark: '#1C1F26', // near black
|
||||||
|
},
|
||||||
|
fg: {
|
||||||
|
light: '#222222',
|
||||||
|
dark: '#E0E6ED',
|
||||||
|
},
|
||||||
|
secondary: {
|
||||||
|
light: '#B0C4DE',
|
||||||
|
dark: '#3A4A5E',
|
||||||
|
},
|
||||||
|
accent: {
|
||||||
|
light: '#7B68EE',
|
||||||
|
dark: '#9CAEFF',
|
||||||
|
},
|
||||||
|
danger: {
|
||||||
|
light: '#F08080',
|
||||||
|
dark: '#FF6B6B',
|
||||||
|
},
|
||||||
|
success: {
|
||||||
|
light: '#3CB371',
|
||||||
|
dark: '#4CAF50',
|
||||||
|
},
|
||||||
|
},
|
||||||
},
|
},
|
||||||
},
|
},
|
||||||
plugins: [
|
plugins: [
|
||||||
require("@tailwindcss/forms"),
|
require('@tailwindcss/forms'),
|
||||||
// Allows prefixing tailwind classes with LiveView classes to add rules
|
// Allows prefixing tailwind classes with LiveView classes to add rules
|
||||||
// only when LiveView classes are applied, for example:
|
// only when LiveView classes are applied, for example:
|
||||||
//
|
//
|
||||||
// <div class="phx-click-loading:animate-ping">
|
// <div class="phx-click-loading:animate-ping">
|
||||||
//
|
//
|
||||||
plugin(({addVariant}) => addVariant("phx-click-loading", [".phx-click-loading&", ".phx-click-loading &"])),
|
plugin(({ addVariant }) =>
|
||||||
plugin(({addVariant}) => addVariant("phx-submit-loading", [".phx-submit-loading&", ".phx-submit-loading &"])),
|
addVariant('phx-click-loading', ['.phx-click-loading&', '.phx-click-loading &']),
|
||||||
plugin(({addVariant}) => addVariant("phx-change-loading", [".phx-change-loading&", ".phx-change-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 Heroicons (https://heroicons.com) into your app.css bundle
|
// Embeds Heroicons (https://heroicons.com) into your app.css bundle
|
||||||
// See your `CoreComponents.icon/1` for more information.
|
// See your `CoreComponents.icon/1` for more information.
|
||||||
//
|
//
|
||||||
plugin(function({matchComponents, theme}) {
|
plugin(function ({ matchComponents, theme }) {
|
||||||
let iconsDir = path.join(__dirname, "../deps/heroicons/optimized")
|
let iconsDir = path.join(__dirname, '../deps/heroicons/optimized');
|
||||||
let values = {}
|
let values = {};
|
||||||
let icons = [
|
let icons = [
|
||||||
["", "/24/outline"],
|
['', '/24/outline'],
|
||||||
["-solid", "/24/solid"],
|
['-solid', '/24/solid'],
|
||||||
["-mini", "/20/solid"],
|
['-mini', '/20/solid'],
|
||||||
["-micro", "/16/solid"]
|
['-micro', '/16/solid'],
|
||||||
]
|
];
|
||||||
icons.forEach(([suffix, dir]) => {
|
icons.forEach(([suffix, dir]) => {
|
||||||
fs.readdirSync(path.join(iconsDir, dir)).forEach(file => {
|
fs.readdirSync(path.join(iconsDir, dir)).forEach((file) => {
|
||||||
let name = path.basename(file, ".svg") + suffix
|
let name = path.basename(file, '.svg') + suffix;
|
||||||
values[name] = {name, fullPath: path.join(iconsDir, dir, file)}
|
values[name] = { name, fullPath: path.join(iconsDir, dir, file) };
|
||||||
})
|
});
|
||||||
})
|
});
|
||||||
matchComponents({
|
matchComponents(
|
||||||
"hero": ({name, fullPath}) => {
|
{
|
||||||
let content = fs.readFileSync(fullPath).toString().replace(/\r?\n|\r/g, "")
|
hero: ({ name, fullPath }) => {
|
||||||
let size = theme("spacing.6")
|
let content = fs
|
||||||
if (name.endsWith("-mini")) {
|
.readFileSync(fullPath)
|
||||||
size = theme("spacing.5")
|
.toString()
|
||||||
} else if (name.endsWith("-micro")) {
|
.replace(/\r?\n|\r/g, '');
|
||||||
size = theme("spacing.4")
|
let size = theme('spacing.6');
|
||||||
|
if (name.endsWith('-mini')) {
|
||||||
|
size = theme('spacing.5');
|
||||||
|
} else if (name.endsWith('-micro')) {
|
||||||
|
size = theme('spacing.4');
|
||||||
}
|
}
|
||||||
return {
|
return {
|
||||||
[`--hero-${name}`]: `url('data:image/svg+xml;utf8,${content}')`,
|
[`--hero-${name}`]: `url('data:image/svg+xml;utf8,${content}')`,
|
||||||
"-webkit-mask": `var(--hero-${name})`,
|
'-webkit-mask': `var(--hero-${name})`,
|
||||||
"mask": `var(--hero-${name})`,
|
mask: `var(--hero-${name})`,
|
||||||
"mask-repeat": "no-repeat",
|
'mask-repeat': 'no-repeat',
|
||||||
"background-color": "currentColor",
|
'background-color': 'currentColor',
|
||||||
"vertical-align": "middle",
|
'vertical-align': 'middle',
|
||||||
"display": "inline-block",
|
display: 'inline-block',
|
||||||
"width": size,
|
width: size,
|
||||||
"height": size
|
height: size,
|
||||||
}
|
};
|
||||||
}
|
},
|
||||||
}, {values})
|
},
|
||||||
})
|
{ values },
|
||||||
]
|
);
|
||||||
}
|
}),
|
||||||
|
],
|
||||||
|
};
|
||||||
|
|||||||
Reference in New Issue
Block a user