| 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 |
|