Move all files to workshop-tailwind-css/demo/florida-drupalcamp/

This commit is contained in:
Oliver Davies 2025-10-02 23:17:29 +01:00
parent d38acd6876
commit 60d3cfc742
41 changed files with 0 additions and 0 deletions

View file

@ -0,0 +1,30 @@
const colors = require('tailwindcss/colors')
module.exports = {
purge: {
content: ['templates/**/*.twig']
},
darkMode: false, // or 'media' or 'class'
theme: {
extend: {
fontFamily: {
display: ['Bebas Neue', 'Arial Narrow', 'Arial', 'sans-serif'],
sans: ['Helvetica', 'Arial', 'sans-serif']
},
screens: {
sm: '700px'
}
},
colors: {
'hit-pink': '#FBA786',
blue: colors.lightBlue,
dandelion: '#FFDC67',
gray: colors.trueGray,
white: '#ffffff'
}
},
variants: {
extend: {},
},
plugins: [],
}