Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
12 changes: 12 additions & 0 deletions src/gtk-3.0/_palette.scss
Original file line number Diff line number Diff line change
Expand Up @@ -77,6 +77,12 @@ $BLACK_500: #333;
$BLACK_700: #1a1a1a;
$BLACK_900: #000;

$LATTE_100: #efdfc4;
$LATTE_300: #e7c591;
$LATTE_500: #cfa25e;
$LATTE_700: #b6802e;
$LATTE_900: #804b00;

// Exported
@define-color STRAWBERRY_100 #{$STRAWBERRY_100};
@define-color STRAWBERRY_300 #{$STRAWBERRY_300};
Expand Down Expand Up @@ -149,3 +155,9 @@ $BLACK_900: #000;
@define-color BLACK_500 #{$BLACK_500};
@define-color BLACK_700 #{$BLACK_700};
@define-color BLACK_900 #{"" + $BLACK_900};

@define-color LATTE_100 #{$LATTE_100};
@define-color LATTE_300 #{$LATTE_300};
@define-color LATTE_500 #{$LATTE_500};
@define-color LATTE_700 #{$LATTE_700};
@define-color LATTE_900 #{$LATTE_900};
8 changes: 8 additions & 0 deletions src/gtk-3.0/_typography.scss
Original file line number Diff line number Diff line change
Expand Up @@ -121,6 +121,14 @@ label.h4,
}
}

&.latte {
@if $color-scheme == "light" {
color: mix($LATTE_300, $LATTE_500, $weight: 75%);
} @else if $color-scheme == "dark" {
color: $LATTE_100;
}
}

&:backdrop {
color: $fg-color;
opacity: 0.6;
Expand Down
12 changes: 12 additions & 0 deletions src/gtk-4.0/_palette.scss
Original file line number Diff line number Diff line change
Expand Up @@ -71,6 +71,12 @@ $BLACK_500: #333;
$BLACK_700: #1a1a1a;
$BLACK_900: #000;

$LATTE_100: #efdfc4;
$LATTE_300: #e7c591;
$LATTE_500: #cfa25e;
$LATTE_700: #b6802e;
$LATTE_900: #804b00;

// Exported
@define-color STRAWBERRY_100 #{$STRAWBERRY_100};
@define-color STRAWBERRY_300 #{$STRAWBERRY_300};
Expand Down Expand Up @@ -143,3 +149,9 @@ $BLACK_900: #000;
@define-color BLACK_500 #{$BLACK_500};
@define-color BLACK_700 #{$BLACK_700};
@define-color BLACK_900 #{"" + $BLACK_900};

@define-color LATTE_100 #{$LATTE_100};
@define-color LATTE_300 #{$LATTE_300};
@define-color LATTE_500 #{$LATTE_500};
@define-color LATTE_700 #{$LATTE_700};
@define-color LATTE_900 #{$LATTE_900};
8 changes: 8 additions & 0 deletions src/gtk-4.0/_typography.scss
Original file line number Diff line number Diff line change
Expand Up @@ -97,6 +97,14 @@
}
}

&.latte {
@if $color-scheme == "light" {
color: mix($LATTE_300, $LATTE_500, $weight: 75%);
} @else if $color-scheme == "dark" {
color: $LATTE_100;
}
}

&:backdrop {
color: $fg-color;
opacity: 0.6;
Expand Down