Simplify MediaWiki UI codebase
[lhc/web/wiklou.git] / resources / src / mediawiki.less / mediawiki.ui / variables.less
1 @baseFontSize: 1em;
2
3 // FIXME: remove @colorProgressiveShadow (shadows should be generated
4 // in LESS by dimming the original colors)
5 @colorProgressiveShadow: #4091ed;
6
7 // White; for background use, and text use on dark backgrounds
8 @colorWhite: #fff;
9 // Off-white; for background use on white backgrounds
10 @colorOffWhite: #fafafa;
11 // Dark gray; for non-text use
12 @colorGrayDark: #898989;
13 // Light gray; for non-text use
14 @colorGrayLight: #ccc;
15 // Very light gray; for non-text use
16 @colorGrayLighter: #ddd;
17 // Lightest gray; for non-text use
18 @colorGrayLightest: #eee;
19
20 // Dark gray; for body text
21 @colorText: #252525;
22 // Light gray; for less important body text and links
23 @colorTextLight: #696969;
24
25 // Blue; for contextual use of a continuing action
26 @colorProgressive: #347bff;
27 // Orange; for contextual use of returning to a past action
28 @colorRegressive: #ff7e1e;
29 // Green; for contextual use of a positive finalizing action
30 @colorConstructive: #00af89;
31 // Red; for contextual use of a negative finalizing action
32 @colorDestructive: #d11d13;
33
34 // Used in mixins to darken contextual colors by the same amount (eg. focus)
35 @colorDarkenPercentage: 13.5%;
36 // Used in mixins to lighten contextual colors by the same amount (eg. hover)
37 @colorLightenPercentage: 13.5%;