-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat(ui): add background to dev theme
- Loading branch information
1 parent
5144841
commit 259d9ce
Showing
1 changed file
with
39 additions
and
37 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,81 +1,83 @@ | ||
/* ====== HOST ROOT ====== */ | ||
:host > tscd-theme, :host > header { | ||
--mdc-theme-primary: #006A64; | ||
--mdc-theme-secondary: #565992; | ||
--mdc-theme-background: #F4FBF9; | ||
--mdc-theme-surface: #FFF9EB; | ||
--mdc-theme-error: #904A44; | ||
--mdc-theme-on-primary: #FFFFFF; | ||
--mdc-theme-on-secondary: #FFFFFF; | ||
--mdc-theme-on-surface: #1D1C13; | ||
--mdc-theme-on-error: #FFFFFF; | ||
--mdc-theme-text-primary-on-background: rgba(22, 29, 28, 0.87); | ||
--mdc-theme-text-secondary-on-background: rgba(22, 29, 28, 0.54); | ||
--mdc-theme-text-hint-on-background: rgba(22, 29, 28, 0.38); | ||
--mdc-theme-text-disabled-on-background: rgba(22, 29, 28, 0.38); | ||
--mdc-theme-text-icon-on-background: rgba(22, 29, 28, 0.38); | ||
--mdc-theme-text-primary-on-light: rgba(22, 29, 28, 0.87); | ||
--mdc-theme-text-secondary-on-light: rgba(22, 29, 28, 0.54); | ||
--mdc-theme-text-hint-on-light: rgba(22, 29, 28, 0.38); | ||
--mdc-theme-text-disabled-on-light: rgba(22, 29, 28, 0.38); | ||
--mdc-theme-text-icon-on-light: rgba(22, 29, 28, 0.38); | ||
--mdc-theme-text-primary-on-dark: #DDE4E2; | ||
--mdc-theme-text-secondary-on-dark: rgba(221, 228, 226, 0.7); | ||
--mdc-theme-text-hint-on-dark: rgba(221, 228, 226, 0.5); | ||
--mdc-theme-text-disabled-on-dark: rgba(221, 228, 226, 0.5); | ||
--mdc-theme-text-icon-on-dark: rgba(221, 228, 226, 0.5); | ||
:host > tscd-theme, | ||
:host > header { | ||
--mdc-theme-primary: #2aa198; | ||
--mdc-theme-secondary: #6c71c4; | ||
--mdc-theme-background: #f3ecda; | ||
--mdc-theme-surface: #fff9eb; | ||
--mdc-theme-error: #b00020; | ||
--mdc-theme-on-primary: #ffffff; | ||
--mdc-theme-on-secondary: #ffffff; | ||
--mdc-theme-on-surface: #1d1c13; | ||
--mdc-theme-on-error: #ffffff; | ||
--mdc-theme-text-primary-on-background: rgba(22, 29, 28, 0.87); | ||
--mdc-theme-text-secondary-on-background: rgba(22, 29, 28, 0.54); | ||
--mdc-theme-text-hint-on-background: rgba(22, 29, 28, 0.38); | ||
--mdc-theme-text-disabled-on-background: rgba(22, 29, 28, 0.38); | ||
--mdc-theme-text-icon-on-background: rgba(22, 29, 28, 0.38); | ||
--mdc-theme-text-primary-on-light: rgba(22, 29, 28, 0.87); | ||
--mdc-theme-text-secondary-on-light: rgba(22, 29, 28, 0.54); | ||
--mdc-theme-text-hint-on-light: rgba(22, 29, 28, 0.38); | ||
--mdc-theme-text-disabled-on-light: rgba(22, 29, 28, 0.38); | ||
--mdc-theme-text-icon-on-light: rgba(22, 29, 28, 0.38); | ||
--mdc-theme-text-primary-on-dark: #dde4e2; | ||
--mdc-theme-text-secondary-on-dark: rgba(221, 228, 226, 0.7); | ||
--mdc-theme-text-hint-on-dark: rgba(221, 228, 226, 0.5); | ||
--mdc-theme-text-disabled-on-dark: rgba(221, 228, 226, 0.5); | ||
--mdc-theme-text-icon-on-dark: rgba(221, 228, 226, 0.5); | ||
} | ||
|
||
tscd-theme { | ||
/* OPEN SCD INSTANCE HEADER */ | ||
--header-height: 112px; | ||
|
||
font-family: 'Roboto', sans-serif; | ||
font-family: "Roboto", sans-serif; | ||
height: calc(100vh - var(--header-height)); | ||
display: flex; | ||
align-items: stretch; | ||
position: relative; | ||
background-color: var(--mdc-theme-background); | ||
} | ||
|
||
/* ====== UTILITY CLASSES ====== */ | ||
|
||
/* ====== FONTS */ | ||
.roboto-mono { | ||
font-family: 'Roboto Mono', monospace; | ||
font-family: "Roboto Mono", monospace; | ||
} | ||
|
||
.font-thin { | ||
font-weight: 100; | ||
font-weight: 100; | ||
} | ||
|
||
.font-extra-light { | ||
font-weight: 200; | ||
font-weight: 200; | ||
} | ||
|
||
.font-light { | ||
font-weight: 300; | ||
font-weight: 300; | ||
} | ||
|
||
.font-normal { | ||
font-weight: 400; | ||
font-weight: 400; | ||
} | ||
|
||
.font-medium { | ||
font-weight: 500; | ||
font-weight: 500; | ||
} | ||
|
||
.font-semi-bold { | ||
font-weight: 600; | ||
font-weight: 600; | ||
} | ||
|
||
.font-bold { | ||
font-weight: 700; | ||
font-weight: 700; | ||
} | ||
|
||
.font-extra-bold { | ||
font-weight: 800; | ||
font-weight: 800; | ||
} | ||
|
||
.font-black { | ||
font-weight: 900; | ||
} | ||
font-weight: 900; | ||
} |