1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374 |
- const { colors, inset } = require('tailwindcss/defaultTheme');
- const themeColors = {
- mask: {
- light: 'rgba(255,255,255,0.3)',
- },
- primary: '#018ffb',
- success: '#55d187',
- warning: '#ffd164',
- danger: '#ed6f6f',
- };
- module.exports = {
- purge: {
- enabled: process.env.NODE_ENV === 'production',
- content: [
- './index.html',
- './src/**/*.vue',
- './src/**/*.js',
- './src/**/*.jsx',
- './src/**/*.ts',
- './src/**/*.tsx',
- ],
- },
- theme: {
- colors: {
- ...colors,
- ...themeColors,
- },
- inset: {
- ...inset,
- '1/2': '50%',
- },
- screens: {
- xs: '480px',
- sm: '576px',
- md: '768px',
- lg: '992px',
- xl: '1200px',
- xxl: '1600px',
- },
- fontSize: {
- xs: '.75rem',
- sm: '.875rem',
- base: '1rem',
- lg: '1.125rem',
- xl: '1.25rem',
- '2xl': '1.5rem',
- '3xl': '1.875rem',
- '4xl': '2.25rem',
- '5xl': '3rem',
- '6xl': '4rem',
- logo: '9rem',
- },
- fontWeight: {
- light: 300,
- normal: 400,
- medium: 500,
- semibold: 600,
- bold: 700,
- extrabold: 800,
- black: 900,
- },
- fontFamily: {
- logo: [' Georgia', 'serif'],
- },
- },
- future: {
-
- removeDeprecatedGapUtilities: true,
- purgeLayersByDefault: true,
- },
- };
|