Skip to content

Commit

Permalink
.
Browse files Browse the repository at this point in the history
  • Loading branch information
louismaximepiton committed Oct 9, 2024
1 parent 7e70ff7 commit 20b3857
Showing 1 changed file with 11 additions and 15 deletions.
26 changes: 11 additions & 15 deletions scss/_functions.scss
Original file line number Diff line number Diff line change
Expand Up @@ -4,14 +4,14 @@
$named-colors: (
"aliceblue": #f0f8ff,
"antiquewhite": #faebd7,
"aqua": #00ffff,
"aqua": #0ff,
"aquamarine": #7fffd4,
"azure": #f0ffff,
"beige": #f5f5dc,
"bisque": #ffe4c4,
"black": #000000,
"black": #000,
"blanchedalmond": #ffebcd,
"blue": #0000ff,
"blue": #00f,
"blueviolet": #8a2be2,
"brown": #a52a2a,
"burlywood": #deb887,
Expand All @@ -22,7 +22,7 @@ $named-colors: (
"cornflowerblue": #6495ed,
"cornsilk": #fff8dc,
"crimson": #dc143c,
"cyan": #00ffff,
"cyan": #0ff,
"darkblue": #00008b,
"darkcyan": #008b8b,
"darkgoldenrod": #b8860b,
Expand All @@ -48,7 +48,7 @@ $named-colors: (
"firebrick": #b22222,
"floralwhite": #fffaf0,
"forestgreen": #228b22,
"fuchsia": #ff00ff,
"fuchsia": #f0f,
"gainsboro": #dcdcdc,
"ghostwhite": #f8f8ff,
"gold": #ffd700,
Expand Down Expand Up @@ -78,13 +78,13 @@ $named-colors: (
"lightsalmon": #ffa07a,
"lightseagreen": #20b2aa,
"lightskyblue": #87cefa,
"lightslategray": #778899,
"lightslategray": #789,
"lightsteelblue": #b0c4de,
"lightyellow": #ffffe0,
"lime": #00ff00,
"lime": #0f0,
"limegreen": #32cd32,
"linen": #faf0e6,
"magenta": #ff00ff,
"magenta": #f0f,
"maroon": #800000,
"mediumaquamarine": #66cdaa,
"mediumblue": #0000cd,
Expand Down Expand Up @@ -118,7 +118,7 @@ $named-colors: (
"plum": #dda0dd,
"powderblue": #b0e0e6,
"purple": #800080,
"red": #ff0000,
"red": #f00,
"rosybrown": #bc8f8f,
"royalblue": #4169e1,
"saddlebrown": #8b4513,
Expand All @@ -141,9 +141,9 @@ $named-colors: (
"turquoise": #40e0d0,
"violet": #ee82ee,
"wheat": #f5deb3,
"white": #ffffff,
"white": #fff,
"whitesmoke": #f5f5f5,
"yellow": #ffff00,
"yellow": #ff0,
"yellowgreen": #9acd32
) !default;

Expand Down Expand Up @@ -288,10 +288,6 @@ $named-colors: (
@error "#{$value} format isn't supported. Supported format: named colors, hex codes or rgb values.";
}

.test {
color: to-rgb(rgba(#ffffff, .5));
}

// Ascending
// Used to evaluate Sass maps like our grid breakpoints.
@mixin _assert-ascending($map, $map-name) {
Expand Down

0 comments on commit 20b3857

Please sign in to comment.