Files
podsteadr/frontend/tailwind.config.js
T

20 lines
377 B
JavaScript
Raw Normal View History

/** @type {import('tailwindcss').Config} */
export default {
content: ['./index.html', './src/**/*.{vue,ts}'],
theme: {
extend: {
colors: {
puddle: {
50: '#eef7ff',
100: '#d9edff',
500: '#2e90fa',
600: '#1570cd',
700: '#0f5aa8',
900: '#0b3866',
},
},
},
},
plugins: [],
};