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