/** @type {import('tailwindcss').Config} */ const defaultTheme = require('tailwindcss/defaultTheme') module.exports = { content: ["./public/index.html", "./src/**/*.{vue,js,ts,jsx,tsx}"], theme: { extend: { boxShadow: { '4x10': '0 3.7px 10.2px rgba(0, 0, 0, 0.10)' }, fontFamily: { 'sans': ['Futura', ...defaultTheme.fontFamily.sans], 'gilroy': ['Gilroy-Regular', ...defaultTheme.fontFamily.sans], }, }, colors: { transparent: "transparent", current: "currentColor", white: "#ffffff", blue: { 500: "#3b82f6", 600: "#2563eb", DEFAULT: "#2967F0", 'text': "#0F38B4", 700: "#1d4ed8", }, gray:{ 300: "rgb(0 0 0 / 35%)", DEFAULT: "#757575", }, }, }, plugins: [], };