me
/
ethanreece.com
Archived
1
0
Fork 0
This repository has been archived on 2024-04-05. You can view files and clone it, but cannot push or open issues/pull-requests.
ethanreece.com/tailwind.config.cjs

17 lines
422 B
JavaScript
Raw Normal View History

2023-05-30 19:11:05 +00:00
/** @type {import('tailwindcss').Config} */
module.exports = {
2023-05-30 19:52:17 +00:00
content: ['./src/**/*.{astro,html,js,jsx,md,mdx,svelte,ts,tsx,vue}'],
theme: {
extend: {},
colors: {
background: '#dbf6db',
'background-dark': '#bbd8bb',
font: '#000000',
},
fontFamily: {
main: ['JetBrainsMono-Regular', 'monospace'],
},
},
plugins: [],
2023-05-30 19:11:05 +00:00
}