# code-snippets/3.4.1/css/_base.scss

Code Snippets, version 3.4.1. 30 lines.

- Page: https://pluginprobe.com/plugins/code-snippets/3.4.1/code/css/_base.scss
- Raw: https://pluginprobe.com/plugins/code-snippets/3.4.1/raw/css/_base.scss
- Modified: 2022-10-26T07:43:12+00:00

Line numbers below start at 1. Link to a line or a range by appending a fragment to the
page URL, for example `https://pluginprobe.com/plugins/code-snippets/3.4.1/code/css/_base.scss#L10-L20`.

```scss

$php-active: #0073aa;
$php-inactive: #579;
$php-background: #78c8e6;

$css-inactive: #b452cd;
$css-active: #7d26cd;
$css-background: #551a8b;
$css-highlight: #8000ff;

$html-active: #548b54;
$html-background: #548b54;
$html-highlight: $html-active;

$js-inactive: #cd6600;
$js-active: #d44500;
$js-background: #cd6600;
$js-highlight: #cd6600;


@mixin link-colors($color, $lightness: 15%) {
	a {
		color: $color;

		&:hover, &:active, &:focus {
			color: lighten($color, $lightness);
		}
	}
}

```
