-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbackground-colors.scss
33 lines (25 loc) · 1 KB
/
background-colors.scss
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
@import './variables/colors';
.bg-navy { background-color: $navy; }
.bg-blue { background-color: $blue; }
.bg-aqua,
.bg-aqua-hover:hover { background-color: $aqua; }
.bg-teal { background-color: $teal; }
.bg-olive { background-color: $olive; }
.bg-green { background-color: $green; }
.bg-lime { background-color: $lime; }
.bg-yellow { background-color: $yellow; }
.bg-orange { background-color: $orange; }
.bg-red { background-color: $red; }
.bg-fuchsia { background-color: $fuchsia; }
.bg-purple { background-color: $purple; }
.bg-maroon { background-color: $maroon; }
.bg-white { background-color: $white; }
.bg-gray { background-color: $gray; }
.bg-silver,
.bg-silver-hover:hover { background-color: $silver; }
.bg-ghostwhite,
.bg-ghostwhite-hover:hover { background-color: $ghostwhite; }
.bg-black { background-color: $black; }
.bg-transparent { background-color: transparent; }
.bg-transparent-dark1 { background-color: hsla(0, 0%, 0%, .075); }
.bg-cover { background-size: cover; }