Initial Docs (#39)

This commit is contained in:
Ollie Taylor
2023-07-09 22:18:06 +01:00
committed by GitHub
parent 9232f4d52e
commit e01855b89b
51 changed files with 3056 additions and 613 deletions
+26
View File
@@ -0,0 +1,26 @@
const colors = require('tailwindcss/colors');
const config = {
content: ['./src/**/*.{html,js,md,mdx,svx,svelte,ts}', './node_modules/svhighlight/**/*.svelte'],
theme: {
extend: {
colors: {
mono: colors.slate,
primary: colors.orange,
},
transitionTimingFunction: {
smooth: 'cubic-bezier(0, 0, 0, 1.5)',
whip: `cubic-bezier(0.8, 0.3, 0.15, 1.1)`,
},
},
},
plugins: [
require('@tailwindcss/typography'),
require('@tailwindcss/forms'),
require('@tailwindcss/line-clamp'),
],
};
module.exports = config;