Background gradients, migrate from CSS to SCSS, remove !important

This commit is contained in:
Maksim Eltyshev
2020-05-29 19:31:19 +05:00
parent 8534ed292c
commit 5bfff3865f
312 changed files with 4295 additions and 2989 deletions

View File

@@ -12,9 +12,9 @@ export default {
AUTHENTICATE_SUCCEEDED: 'AUTHENTICATE_SUCCEEDED',
AUTHENTICATE_FAILED: 'AUTHENTICATE_FAILED',
/* App */
/* Core */
APP_INITIALIZED: 'APP_INITIALIZED',
CORE_INITIALIZED: 'CORE_INITIALIZED',
/* Modal */

View File

@@ -1,39 +1,27 @@
import fromPairs from 'lodash/fromPairs';
const PAIRS = [
['berry-red', '#e04556'],
['pumpkin-orange', '#f0982d'],
['lagoon-blue', '#109dc0'],
['pink-tulip', '#f97394'],
['light-mud', '#c7a57b'],
['orange-peel', '#fab623'],
['bright-moss', '#a5c261'],
['antique-blue', '#6c99bb'],
['dark-granite', '#8b8680'],
['lagune-blue', '#00b4b1'],
['sunny-grass', '#bfca02'],
['morning-sky', '#52bad5'],
['light-orange', '#ffc66d'],
['midnight-blue', '#004d73'],
['tank-green', '#8aa177'],
['gun-metal', '#355263'],
['wet-moss', '#4a8753'],
['red-burgundy', '#ad5f7d'],
['light-concrete', '#afb0a4'],
['apricot-red', '#fc736d'],
['desert-sand', '#edcb76'],
['navy-blue', '#166a8f'],
['egg-yellow', '#f7d036'],
['coral-green', '#2b6a6c'],
['light-cocoa', '#87564a'],
export default [
'berry-red',
'pumpkin-orange',
'lagoon-blue',
'pink-tulip',
'light-mud',
'orange-peel',
'bright-moss',
'antique-blue',
'dark-granite',
'lagune-blue',
'sunny-grass',
'morning-sky',
'light-orange',
'midnight-blue',
'tank-green',
'gun-metal',
'wet-moss',
'red-burgundy',
'light-concrete',
'apricot-red',
'desert-sand',
'navy-blue',
'egg-yellow',
'coral-green',
'light-cocoa',
];
const KEYS = PAIRS.map((pair) => pair[0]);
const MAP = fromPairs(PAIRS);
export default {
PAIRS,
KEYS,
MAP,
};

View File

@@ -0,0 +1,27 @@
export default [
'old-lime',
'ocean-dive',
'tzepesch-style',
'jungle-mesh',
'strawberry-dust',
'purple-rose',
'sun-scream',
'warm-rust',
'sky-change',
'green-eyes',
'blue-xchange',
'blood-orange',
'sour-peel',
'green-ninja',
'algae-green',
'coral-reef',
'steel-grey',
'heat-waves',
'velvet-lounge',
'purple-rain',
'blue-steel',
'blueish-curve',
'prism-light',
'green-mist',
'red-curtain',
];