Add subtle primary color
Signed-off-by: Šimon Brandner <simon.bra.ag@gmail.com>
This commit is contained in:
parent
1f02f14db6
commit
a63dc637ab
3 changed files with 6 additions and 0 deletions
|
@ -25,3 +25,4 @@ LIVEKIT_SECRET="secret"
|
||||||
# VITE_THEME_SYSTEM=#21262c
|
# VITE_THEME_SYSTEM=#21262c
|
||||||
# VITE_THEME_BACKGROUND=#15191e
|
# VITE_THEME_BACKGROUND=#15191e
|
||||||
# VITE_THEME_BACKGROUND_85=#15191ed9
|
# VITE_THEME_BACKGROUND_85=#15191ed9
|
||||||
|
# VITE_THEME_SUBTLE_PRIMARY=#26282D
|
||||||
|
|
|
@ -52,6 +52,7 @@ limitations under the License.
|
||||||
--background: #15191e;
|
--background: #15191e;
|
||||||
--background-85: rgba(23, 25, 28, 0.85);
|
--background-85: rgba(23, 25, 28, 0.85);
|
||||||
--bgColor3: #444; /* This isn't found anywhere in the designs or Compound */
|
--bgColor3: #444; /* This isn't found anywhere in the designs or Compound */
|
||||||
|
--subtle-primary: #26282d;
|
||||||
}
|
}
|
||||||
|
|
||||||
@font-face {
|
@font-face {
|
||||||
|
|
|
@ -133,6 +133,10 @@ export class Initializer {
|
||||||
"--background-85",
|
"--background-85",
|
||||||
import.meta.env.VITE_THEME_BACKGROUND_85 as string
|
import.meta.env.VITE_THEME_BACKGROUND_85 as string
|
||||||
);
|
);
|
||||||
|
style.setProperty(
|
||||||
|
"--subtle-primary",
|
||||||
|
import.meta.env.VITE_THEME_SUBTLE_PRIMARY as string
|
||||||
|
);
|
||||||
}
|
}
|
||||||
|
|
||||||
// Custom fonts
|
// Custom fonts
|
||||||
|
|
Loading…
Reference in a new issue