PluginProbe
Code Snippets / 3.6.6
Code Snippets v3.6.6
3.10.2 3.10.1 3.10.0 3.10.0-beta.2 3.10.0-beta.1 4.0.0-beta.1 3.9.6 trunk 2.10.0 2.10.1 2.12.0 2.12.1 2.13.0 2.13.1 2.13.2 2.13.3 2.14.0 2.14.1 2.14.2 2.14.3 2.14.4 2.14.5 2.14.6 3.0.0 3.0.1 All 64 releases
code-snippets / css / common / _base.scss

_base.scss in Code Snippets 3.6.6, at css/common/_base.scss

38 lines 666 B
No matching file
Up and down to move Enter to open Esc to close
Raw Download Zip
1 $php-active: #0073aa;
2 $php-inactive: #579;
3 $php-background: #78c8e6;
4
5 $css-inactive: #b452cd;
6 $css-active: #7d26cd;
7 $css-background: #551a8b;
8 $css-highlight: #8000ff;
9
10 $html-active: #548b54;
11 $html-background: #548b54;
12 $html-highlight: $html-active;
13
14 $js-inactive: #cd6600;
15 $js-active: #d44500;
16 $js-background: #cd6600;
17 $js-highlight: #cd6600;
18
19 $theme-primary: #03c7d2;
20 $theme-secondary: #d46f4d;
21 $theme-outline: #9e9e9e;
22
23 $theme-core: #0073aa;
24 $theme-pro: #ce0000;
25
26 $brand-discord: #5865f2;
27 $brand-facebook: #3b5998;
28
29 @mixin link-colors($color, $lightness: 15%) {
30 a {
31 color: $color;
32
33 &:hover, &:active, &:focus {
34 color: lighten($color, $lightness);
35 }
36 }
37 }
38