Skip to content

Commit 9e67d3b

Browse files
committed
Add nimbus colors that are used in pages. Check surface colors
1 parent d10db40 commit 9e67d3b

File tree

5 files changed

+19
-5
lines changed

5 files changed

+19
-5
lines changed

apps/cyberstorm-remix/app/commonComponents/PackageSearch/PackageSearch.css

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@
1515
width: 17rem;
1616
padding: var(--space-12);
1717
border-radius: var(--radius-md);
18-
background: var(--color-surface-3);
18+
background: var(--color-surface-default);
1919
}
2020

2121
.package-search__search {

apps/cyberstorm-remix/app/p/packageListing.css

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -89,7 +89,7 @@
8989
align-items: center;
9090
align-self: stretch;
9191
padding: var(--space-8) var(--space-12);
92-
background: var(--color-surface-4);
92+
background: var(--color-surface-default);
9393
}
9494

9595
.package-listing-sidebar__label {
@@ -138,7 +138,7 @@
138138
align-self: stretch;
139139
padding: var(--space-16);
140140
border-radius: var(--radius-md);
141-
background-color: var(--color-surface-4);
141+
background-color: var(--color-surface-default);
142142
}
143143

144144
.package-listing-sidebar__header {
Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
@layer nimbus-colors {
2+
:root {
3+
--color-body-bg-color: var(--color-surface-2);
4+
--color-header-bg-color: hsl(240deg 42% 11% / 0.85);
5+
--color-border-dim: var(--color-surface-a6);
6+
--color-border-default: var(--color-surface-a7);
7+
--color-border-bright: var(--color-surface-a8);
8+
--color-surface-dim: var(--color-surface-a3);
9+
--color-surface-default: var(--color-surface-a4);
10+
--color-skeleton-bg-color: var(--color-surface-default);
11+
--color-datalist-row-bg-color: var(--color-surface-default);
12+
}
13+
}

apps/cyberstorm-remix/app/styles/index.css

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
1-
@layer utils, components, theme, theme-components, theme-components-sizes, theme-components-colors, theme-components-layouts, theme-components-miscs, theme-layout, nimbus-components, nimbus-layout, nimbus-overrides;
1+
@layer utils, components, theme, theme-components, theme-components-sizes, theme-components-colors, theme-components-layouts, theme-components-miscs, theme-layout, nimbus-colors, nimbus-components, nimbus-layout, nimbus-overrides;
22

3+
@import "colors.css";
34
@import "layout.css";
45
@import "overrides.css";
56
@import "error.css";

apps/cyberstorm-remix/app/styles/layout.css

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99

1010
body {
1111
display: flex;
12-
background-color: black;
12+
background-color: var(--color-surface-1);
1313
}
1414

1515
.layout__main {

0 commit comments

Comments
 (0)