add ignore
This commit is contained in:
32
src/main/frontend/themes/myTheme/styles.css
Normal file
32
src/main/frontend/themes/myTheme/styles.css
Normal file
@@ -0,0 +1,32 @@
|
||||
:root {
|
||||
/* Hintergrund- und Textfarben */
|
||||
--lumo-base-color: hsl(0, 0%, 8%); /* Sehr dunkles Grau (fast schwarz) */
|
||||
--lumo-body-text-color: hsl(150, 30%, 90%); /* Hellgrünliches Weiß für Text */
|
||||
|
||||
/* Primärfarbe in grün */
|
||||
--lumo-primary-color: hsl(145, 80%, 40%);
|
||||
--lumo-primary-color-50pct: hsla(145, 80%, 40%, 0.5);
|
||||
--lumo-primary-color-10pct: hsla(145, 80%, 40%, 0.1);
|
||||
|
||||
/* Sekundärfarben / Akzente */
|
||||
--lumo-success-color: hsl(145, 80%, 35%);
|
||||
--lumo-error-color: hsl(0, 80%, 60%);
|
||||
--lumo-border-radius: 6px;
|
||||
}
|
||||
|
||||
/* Hintergrundfarbe für Schaltflächen */
|
||||
[theme~="primary"] {
|
||||
background-color: var(--lumo-primary-color);
|
||||
color: white;
|
||||
}
|
||||
|
||||
vaadin-button {
|
||||
border-radius: var(--lumo-border-radius);
|
||||
}
|
||||
|
||||
/* Grid-Styling */
|
||||
vaadin-grid {
|
||||
border-radius: var(--lumo-border-radius);
|
||||
background-color: var(--lumo-base-color);
|
||||
color: var(--lumo-body-text-color);
|
||||
}
|
||||
Reference in New Issue
Block a user