Display: Add color variations - refs BT#19044

pull/4004/head
Yannick Warnier 4 years ago
parent be6a937c91
commit 8f60a5217e
  1. 20
      tailwind.config.js

@ -15,6 +15,7 @@ module.exports = {
'ch-secondary': { 'ch-secondary': {
DEFAULT: '#fd6600', DEFAULT: '#fd6600',
'dark': '#ea5300', 'dark': '#ea5300',
'light': '#ff7913',
}, },
'ch-support-1': 'rgba(46, 117, 163, 0.08)', 'ch-support-1': 'rgba(46, 117, 163, 0.08)',
'ch-support-2': '#f5f8fa', 'ch-support-2': '#f5f8fa',
@ -22,13 +23,26 @@ module.exports = {
'ch-support-4': '#244d67', 'ch-support-4': '#244d67',
'ch-support-5': '#e06410', 'ch-support-5': '#e06410',
'ch-support-6': '#faf7f5', 'ch-support-6': '#faf7f5',
'ch-warning': '#eddf0e', 'ch-warning': {
'ch-success': '#a4dc2d', DEFAULT: '#eddf0e',
'dark': '#dacc0a',
'light': '#ffef1f',
},
'ch-success': {
DEFAULT: '#a4dc2d',
'dark': '#91c91a',
'light': '#b7ef3f',
},
'ch-error': { 'ch-error': {
DEFAULT: '#ef3e3e', DEFAULT: '#ef3e3e',
'dark': '#dc2b2b', 'dark': '#dc2b2b',
'light': '#ff4f4f',
}, },
'ch-info': '#3e9aef' 'ch-info': {
DEFAULT: '#3e9aef',
'dark': '#2b87dc',
'light': '#4fadff',
}
} }
}, },
}, },

Loading…
Cancel
Save