Skip to content

Commit

Permalink
Add missing ":"
Browse files Browse the repository at this point in the history
  • Loading branch information
adamhsparks committed Aug 4, 2024
1 parent c82401d commit cf26f14
Showing 1 changed file with 13 additions and 14 deletions.
27 changes: 13 additions & 14 deletions _extensions/aagi/aagi.scss
Original file line number Diff line number Diff line change
Expand Up @@ -8,20 +8,19 @@

// define AAGI colours

$colors (
"aagi-black": #414042,
"aagi-blue": #648fd2,
"aagi-bright-green": #b6d438,
"aagi-green": #54921e,
"aagi-grey": #f2f2f2,
"aagi-orange": #ec8525,
"aagi-teal": #00808b,
"aagi-yellow": #ffbc42,
)

// functions
// From Emil Hvitfeldt, https://emilhvitfeldt.com/post/slidecraft-scss-uses/
@function theme-color($color) {
$colors: (
"aagi-black": #414042,
"aagi-blue": #648fd2,
"aagi-bright-green": #b6d438,
"aagi-green": #54921e,
"aagi-grey": #f2f2f2,
"aagi-orange": #ec8525,
"aagi-teal": #00808b,
"aagi-yellow": #ffbc42,
)
// functions
// From Emil Hvitfeldt, https://emilhvitfeldt.com/post/slidecraft-scss-uses/
@function theme-color($color) {
@return map-get($colors, $color);
}
//
Expand Down

0 comments on commit cf26f14

Please sign in to comment.