Initial commit

This commit is contained in:
2023-01-27 22:55:09 +11:00
commit 833f3ea8b2
130 changed files with 5637 additions and 0 deletions

36
tailwind.config.js Normal file
View File

@@ -0,0 +1,36 @@
/** @type {import('tailwindcss').Config} */
const colors = require("tailwindcss/colors");
module.exports = {
content: ["./app/templates/**/*.slim"],
theme: {
fontSize: {
xsm: '0.75rem',
sm: '0.8rem',
base: '1rem',
xl: '1.25rem',
'2xl': '1.563rem',
'3xl': '1.953rem',
'4xl': '2.441rem',
'5xl': '3.052rem',
},
extend: {
typograpgy: {
emphasis: {
css: {
em: {
colors: colors.pink['400']
},
a: {
colors: colors.red['100']
}
}
}
}
},
},
plugins: [
require('@tailwindcss/typography'),
],
}