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
8 changes: 4 additions & 4 deletions libs/ui/palette.config.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,17 +2,17 @@
"surfaces": {
"colors": {
"default": {
"luma": 0.3,
"luma": 0.4,
"chroma": 0.005,
"hue": 228
},
"primary": {
"luma": 0.3,
"luma": 0.4,
"chroma": 0.04,
"hue": 250
},
"warn": {
"luma": 0.3,
"luma": 0.4,
"chroma": 0.04,
"hue": 22
}
Expand All @@ -25,7 +25,7 @@
"highest"
],
"stepping": {
"luma": -0.075,
"luma": -0.1,
"chroma": 0,
"hue": 0
},
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,7 @@

&:hover {
button {
color: oklch(from var(--color) calc(l - l * 0.08) calc(c + c * 0.3) h);
color: oklch(from var(--color) calc(l - l * 0.15) calc(c + c * 0.3) h);
}
}

Expand Down
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
:host {
display: block;
position: fixed;
left: calc(var(--dim-xx-large) * 2);
left: calc(var(--dim-x-large));
bottom: calc(var(--dim-xx-large) * 2);

background: var(--color-surface-default-medium);
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
--height: calc(48px * var(--app-density));
--padding-vertical: 0;
--padding-horizontal: var(--dim-large);
--background: var(--color-surface-default-low);
--background: var(--color-surface-default-medium);

display: block;
}
Expand Down
24 changes: 12 additions & 12 deletions libs/ui/src/styles/global/palette2.scss
Original file line number Diff line number Diff line change
@@ -1,22 +1,22 @@
:root {
/* Surfaces */

--color-surface-default-highest: oklch(0.300 0.005 228.000);
--color-surface-default-high: oklch(0.225 0.005 228.000);
--color-surface-default-medium: oklch(0.150 0.005 228.000);
--color-surface-default-low: oklch(0.075 0.005 228.000);
--color-surface-default-highest: oklch(0.400 0.005 228.000);
--color-surface-default-high: oklch(0.300 0.005 228.000);
--color-surface-default-medium: oklch(0.200 0.005 228.000);
--color-surface-default-low: oklch(0.100 0.005 228.000);
--color-surface-default-lowest: oklch(0.000 0.005 228.000);

--color-surface-primary-highest: oklch(0.300 0.040 250.000);
--color-surface-primary-high: oklch(0.225 0.040 250.000);
--color-surface-primary-medium: oklch(0.150 0.040 250.000);
--color-surface-primary-low: oklch(0.075 0.040 250.000);
--color-surface-primary-highest: oklch(0.400 0.040 250.000);
--color-surface-primary-high: oklch(0.300 0.040 250.000);
--color-surface-primary-medium: oklch(0.200 0.040 250.000);
--color-surface-primary-low: oklch(0.100 0.040 250.000);
--color-surface-primary-lowest: oklch(0.000 0.040 250.000);

--color-surface-warn-highest: oklch(0.300 0.040 22.000);
--color-surface-warn-high: oklch(0.225 0.040 22.000);
--color-surface-warn-medium: oklch(0.150 0.040 22.000);
--color-surface-warn-low: oklch(0.075 0.040 22.000);
--color-surface-warn-highest: oklch(0.400 0.040 22.000);
--color-surface-warn-high: oklch(0.300 0.040 22.000);
--color-surface-warn-medium: oklch(0.200 0.040 22.000);
--color-surface-warn-low: oklch(0.100 0.040 22.000);
--color-surface-warn-lowest: oklch(0.000 0.040 22.000);

/* Content on surfaces */
Expand Down