golscontrol-frontend-v1/tailwind.config.js
Moisés de Jesús Cortés Castellanos b6c8a347cd
ADD: Plantilla Holos (#1)
2024-12-13 16:15:01 -06:00

27 lines
797 B
JavaScript

import defaultTheme from 'tailwindcss/defaultTheme';
import colors from './colors.json'
/** @type {import('tailwindcss').Config} */
export default {
darkMode: 'class',
content: [
"./index.html",
"./src/**/*.{vue,js,ts,jsx,tsx}"
],
theme: {
extend: {
colors: colors,
fontFamily: {
sans: ['Figtree', ...defaultTheme.fontFamily.sans],
'google-icon-outlined':['Material Symbols Outlined'],
'google-icon-outlined-fill':['Material Symbols Outlined Fill'],
'google-icon-rounded':['Material Symbols Rounded'],
'google-icon-rounded-fill':['Material Symbols Rounded Fill'],
'google-icon-sharp':['Material Symbols Sharp'],
'google-icon-sharp-fill':['Material Symbols Sharp Fill'],
},
},
},
plugins: [],
}