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

34 lines
980 B
JavaScript

/** @type {import('tailwindcss').Config} */
const heropatterns = require('tailwindcss-hero-patterns/src/patterns')
module.exports = {
content: ['./src/**/*.{astro,html,js,jsx,md,mdx,svelte,ts,tsx,vue}'],
theme: {
extend: {},
heroPatterns: {
circuitboard: heropatterns.circuitboard,
},
heroPatternsOpacities: ['100'],
heroPatternColors: ['font'],
colors: {
background: '#dbf6db',
'background-dark': '#bbd8bb',
'background-light': '#ffffff',
font: '#000000',
'font-light': '#004f07',
pattern: 'rgba(0,0,0,.02)',
},
fontFamily: {
main: ['JetBrains Mono Variable', 'monospace'],
},
backgroundSize: {
contain: 'contain',
},
spacing: {
'screen-x': '2rem',
'screen-y': '1rem',
},
},
plugins: [require('tailwindcss-hero-patterns')],
}