| 1 |
|
| 2 |
$php-active: #0073aa; |
| 3 |
$php-inactive: #579; |
| 4 |
$php-background: #78c8e6; |
| 5 |
|
| 6 |
$css-inactive: #b452cd; |
| 7 |
$css-active: #7d26cd; |
| 8 |
$css-background: #551a8b; |
| 9 |
$css-highlight: #8000ff; |
| 10 |
|
| 11 |
$html-active: #548b54; |
| 12 |
$html-background: #548b54; |
| 13 |
$html-highlight: $html-active; |
| 14 |
|
| 15 |
$js-inactive: #cd6600; |
| 16 |
$js-active: #d44500; |
| 17 |
$js-background: #cd6600; |
| 18 |
$js-highlight: #cd6600; |
| 19 |
|
| 20 |
|
| 21 |
@mixin link-colors($color, $lightness: 15%) { |
| 22 |
a { |
| 23 |
color: $color; |
| 24 |
|
| 25 |
&:hover, &:active, &:focus { |
| 26 |
color: lighten($color, $lightness); |
| 27 |
} |
| 28 |
} |
| 29 |
} |
| 30 |
|