BossBey File Manager
PHP:
8.0.9
OS:
Linux
User:
forge
Root
/
home
/
forge
/
www.absolutescreenprinting.com
📤 Upload
📝 New File
📁 New Folder
Close
Editing: tailwind.config.js
const plugin = require('tailwindcss/plugin') const defaultTheme = require('tailwindcss/defaultTheme') module.exports = { mode: 'jit', purge: [ './resources/views/**/*.blade.php' ], theme: { colors: { "black": { 'DEFAULT': '#1E1240', 'light': '#625979' }, "white": { 'DEFAULT': '#ffffff' }, "gray": { 'DEFAULT': '#E7E5EA', 'dark': '#E6E8EC', 'darker': '#625979' }, "blue": { 'DEFAULT': '#008BD0', 'light': '#28C3E8', 'lightest': '#F2F9FD' }, "orange": { 'DEFAULT': '#FF5924', 'light': '#FFA53C', }, "purple": { 'DEFAULT': '#361163' } }, fontFamily: { 'poppins': 'Poppins, serif' }, rounded: { sm: '4px', md: '8px', lg: '16px', xl: '32px', full: '100%' }, extend: { fontSize: { '14': '14px', } } }, variants: {}, plugins: [ plugin(function({ addUtilities }) { const newUtilities = { '.col': { 'flex-shrink': '0', 'flex-grow': '0' } } // addUtilities(newUtilities) }) ], corePlugins: { container: false, } };
Save
Cancel