Initial commit
This commit is contained in:
36
tailwind.config.js
Normal file
36
tailwind.config.js
Normal 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'),
|
||||
],
|
||||
}
|
Reference in New Issue
Block a user