/
var
/
www
/
html
/
sugardemo
/
Upload File
HOME
/* * Your installation or use of this SugarCRM file is subject to the applicable * terms available at * http://support.sugarcrm.com/Resources/Master_Subscription_Agreements/. * If you do not agree to all of the applicable terms or do not have the * authority to bind the entity as an authorized representative, then do not * install or use this SugarCRM file. * * Copyright (C) SugarCRM Inc. All rights reserved. */ const SugarColorPalette = require('./maple-syrup/build/tailwind/sugar-tw-color-palette'); module.exports = { blocklist: [ 'collapse', // Collides with Bootstrap collapse plugin ], content: [ './styleguide/tailwind.css', './clients/base/**/*.{hbs,js,php}', './clients/base/**/**/*.{hbs,js,php}', './modules/**/*.{hbs,js,php}', './modules/**/clients/base/**/**/*.{hbs,js,php}', ], darkMode: ['class', '.sugar-dark-theme'], theme: { colors: SugarColorPalette, borderRadius: { 'none': '0', 'sm': '0.125rem', DEFAULT: '0.25rem', 'md': '0.425rem', 'lg': '0.6rem', 'xl': '0.75rem', '2xl': '1rem', '3xl': '1.5rem', 'full': '9999px' }, boxShadow: { 'none': '0 0 0 var(--shadow-color)', DEFAULT: '0 2px 2px var(--shadow-color), 0 0 2px var(--shadow-color)', 'md': '0 2px 4px var(--shadow-color)', 'lg': '0 2px 8px var(--shadow-color)', 'xl': '0 2px 9px var(--shadow-color)' }, extend: { boxShadow: { 'no-top': '0 2px 2px var(--shadow-color)' }, fontSize: { '2xs': ['0.625rem', { lineHeight: '0.75rem' }] }, leading: { '3': ['0.625rem', { lineHeight: '0.625rem' }] }, paddingBottom: { '0.75': ['0.1875rem', { paddingBottom: '0.1875rem', }] }, width: { '15': ['3.75rem', { width: '3.75rem', }], '50': ['12.5rem', { width: '12.5rem', }] }, spacing: { '0.75': '0.1875rem', '25': '6.25rem', '26': '6.5rem', '27': '6.75rem', '15': '3.75rem', }, }, }, plugins: [], corePlugins: { preflight: false, // Enable once more of our own preflight and reset styles are cleaned up } };