@ihk-gfi/lux-components-theme 19.2.0 → 21.0.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +123 -174
- package/package.json +17 -10
- package/prebuilt-themes/luxtheme-authentic-min.css +1 -1
- package/prebuilt-themes/luxtheme-authentic-min.css.map +1 -1
- package/prebuilt-themes/luxtheme-authentic.css +9469 -11429
- package/prebuilt-themes/luxtheme-authentic.css.map +1 -1
- package/prebuilt-themes/luxtheme-green-min.css +1 -1
- package/prebuilt-themes/luxtheme-green-min.css.map +1 -1
- package/prebuilt-themes/luxtheme-green.css +9411 -11645
- package/prebuilt-themes/luxtheme-green.css.map +1 -1
- package/src/base-templates/common/_luxbreakpoints.scss +96 -0
- package/src/{base → base-templates/common}/_luxelevations.scss +1 -1
- package/src/base-templates/common/_luxfocus.scss +84 -0
- package/src/{base → base-templates/common}/_luxlayout.scss +0 -1
- package/src/base-templates/common/_luxstyles.scss +510 -0
- package/src/base-templates/components/_luxAccordion.scss +137 -0
- package/src/base-templates/components/_luxAppContent.scss +4 -0
- package/src/{base → base-templates}/components/_luxAppFooter.scss +2 -6
- package/src/{base → base-templates}/components/_luxAppHeader.scss +66 -76
- package/src/base-templates/components/_luxAppHeaderAc.scss +147 -0
- package/src/base-templates/components/_luxAppHeaderAcSessionTimer.scss +95 -0
- package/src/base-templates/components/_luxAutocomplete.scss +24 -0
- package/src/base-templates/components/_luxBadge.scss +40 -0
- package/src/base-templates/components/_luxBadgeNotification.scss +53 -0
- package/src/{base → base-templates}/components/_luxBreadcrumb.scss +5 -8
- package/src/base-templates/components/_luxButton.scss +107 -0
- package/src/base-templates/components/_luxButtonFlat.scss +53 -0
- package/src/base-templates/components/_luxButtonRaised.scss +80 -0
- package/src/base-templates/components/_luxButtonRounded.scss +83 -0
- package/src/base-templates/components/_luxButtonRoundedStroked.scss +76 -0
- package/src/base-templates/components/_luxButtonSpinner.scss +90 -0
- package/src/base-templates/components/_luxButtonStroked.scss +45 -0
- package/src/base-templates/components/_luxCard.scss +133 -0
- package/src/base-templates/components/_luxCheckbox.scss +11 -0
- package/src/{base → base-templates}/components/_luxCheckboxContainerAc.scss +6 -4
- package/src/base-templates/components/_luxChips.scss +123 -0
- package/src/base-templates/components/_luxCore.scss +26 -0
- package/src/base-templates/components/_luxDatepicker.scss +65 -0
- package/src/base-templates/components/_luxDatetimepicker.scss +17 -0
- package/src/{base → base-templates}/components/_luxDialog.scss +22 -16
- package/src/base-templates/components/_luxDivider.scss +10 -0
- package/src/{base → base-templates}/components/_luxErrorPage.scss +0 -4
- package/src/base-templates/components/_luxFileList.scss +55 -0
- package/src/{base → base-templates}/components/_luxFilePreview.scss +1 -4
- package/src/base-templates/components/_luxFileProgress.scss +13 -0
- package/src/base-templates/components/_luxFileUpload.scss +271 -0
- package/src/base-templates/components/_luxFileinput.scss +27 -0
- package/src/{base → base-templates}/components/_luxFilter.scss +31 -5
- package/src/base-templates/components/_luxFormControlWrapper.scss +276 -0
- package/src/base-templates/components/_luxHtml.scss +8 -0
- package/src/base-templates/components/_luxIcon.scss +53 -0
- package/src/base-templates/components/_luxInput.scss +30 -0
- package/src/{base → base-templates}/components/_luxLinkPlain.scss +12 -13
- package/src/{base → base-templates}/components/_luxList.scss +5 -8
- package/src/base-templates/components/_luxLookupAutocomplete.scss +6 -0
- package/src/base-templates/components/_luxLookupCombobox.scss +30 -0
- package/src/{base → base-templates}/components/_luxMasterDetailAc.scss +17 -34
- package/src/base-templates/components/_luxMenu.scss +270 -0
- package/src/base-templates/components/_luxMessagebox.scss +119 -0
- package/src/base-templates/components/_luxPopup.scss +54 -0
- package/src/base-templates/components/_luxProgressBar.scss +103 -0
- package/src/base-templates/components/_luxProgressSpinner.scss +94 -0
- package/src/base-templates/components/_luxRadioButton.scss +32 -0
- package/src/base-templates/components/_luxSelect.scss +42 -0
- package/src/base-templates/components/_luxSideNav.scss +93 -0
- package/src/base-templates/components/_luxSlider.scss +17 -0
- package/src/base-templates/components/_luxSnackbar.scss +41 -0
- package/src/{base → base-templates}/components/_luxStepper.scss +33 -129
- package/src/base-templates/components/_luxStepperLarge.scss +435 -0
- package/src/{base → base-templates}/components/_luxTable.scss +29 -63
- package/src/{base → base-templates}/components/_luxTabs.scss +32 -67
- package/src/base-templates/components/_luxTextarea.scss +16 -0
- package/src/base-templates/components/_luxTextbox.scss +83 -0
- package/src/{base → base-templates}/components/_luxTile.scss +12 -17
- package/src/base-templates/components/_luxTileAc.scss +71 -0
- package/src/base-templates/components/_luxToggle.scss +19 -0
- package/src/base-templates/components/_luxToolTip.scss +8 -0
- package/src/{base → base-templates}/components/_luxTourHint.scss +11 -7
- package/src/theme-authentic/_mat3Theme.scss +135 -0
- package/src/theme-authentic/_palettes.scss +183 -0
- package/src/theme-authentic/_variables.scss +486 -0
- package/src/theme-authentic/_variablesPreferContrast.scss +76 -0
- package/src/theme-authentic/lux-authentic.scss +69 -0
- package/src/theme-green/_mat3Theme.scss +134 -0
- package/src/theme-green/_palettes.scss +182 -0
- package/src/theme-green/_variables.scss +487 -0
- package/src/theme-green/_variablesPreferContrast.scss +76 -0
- package/src/theme-green/lux-green.scss +68 -0
- package/src/authentic/_custom.scss +0 -609
- package/src/authentic/_custombutton.scss +0 -143
- package/src/authentic/_luxcommon.scss +0 -138
- package/src/authentic/_luxpalette.scss +0 -230
- package/src/authentic/luxtheme.scss +0 -113
- package/src/base/_luxbreakpoints.scss +0 -94
- package/src/base/_luxcommon.scss +0 -104
- package/src/base/_luxcomponents.scss +0 -843
- package/src/base/_luxfocus.scss +0 -429
- package/src/base/_luxpalette.scss +0 -10
- package/src/base/_luxstyles.scss +0 -723
- package/src/base/_luxtheme.scss +0 -23
- package/src/base/components/_luxAppHeaderAc.scss +0 -214
- package/src/base/components/_luxBadge.scss +0 -62
- package/src/base/components/_luxButton.scss +0 -283
- package/src/base/components/_luxCard.scss +0 -179
- package/src/base/components/_luxFormControlWrapper.scss +0 -205
- package/src/base/components/_luxFormControlsAuthentic.scss +0 -709
- package/src/base/components/_luxIcon.scss +0 -41
- package/src/base/components/_luxMenu.scss +0 -314
- package/src/base/components/_luxMessagebox.scss +0 -156
- package/src/base/components/_luxProgressBar.scss +0 -5
- package/src/base/components/_luxProgressSpinner.scss +0 -13
- package/src/base/components/_luxSnackbar.scss +0 -77
- package/src/base/components/_luxTextbox.scss +0 -91
- package/src/base/components/_luxTileAc.scss +0 -87
- package/src/base/components/_luxToolTip.scss +0 -5
- package/src/green/_custom.scss +0 -1125
- package/src/green/_luxcommon.scss +0 -117
- package/src/green/_luxpalette.scss +0 -231
- package/src/green/luxtheme.scss +0 -117
- package/src/public/global.scss +0 -113
- /package/src/{base → base-templates/common}/_luxSvgIcons.scss +0 -0
- /package/src/{base → base-templates/common}/_luxfonts.scss +0 -0
|
@@ -1,117 +0,0 @@
|
|
|
1
|
-
@use "sass:map";
|
|
2
|
-
@use "luxpalette";
|
|
3
|
-
|
|
4
|
-
// Allgemein
|
|
5
|
-
$dark-primary-text: #003366;
|
|
6
|
-
$dark-secondary-text: #003366;
|
|
7
|
-
$dark-disabled-text: #636d76;
|
|
8
|
-
$dark-dividers: rgba(black, 0.2);
|
|
9
|
-
$dark-focused: rgba(black, 0.12);
|
|
10
|
-
|
|
11
|
-
$light-primary-text: white;
|
|
12
|
-
$light-secondary-text: rgba(white, 0.7);
|
|
13
|
-
$light-disabled-text: rgba(white, 0.5);
|
|
14
|
-
$light-dividers: #e3ebf5;
|
|
15
|
-
$light-focused: rgba(white, 0.12);
|
|
16
|
-
|
|
17
|
-
// App
|
|
18
|
-
$app-header-bg: #ffffff;
|
|
19
|
-
$app-content-bg: #ffffff;
|
|
20
|
-
$app-footer-bg: #e3ebf5;
|
|
21
|
-
$app-data-bg: #ffffff;
|
|
22
|
-
$app-gradient: linear-gradient(90deg, #ffffff 0%, #f8fbff 100%);
|
|
23
|
-
$app-gradient-reverse: linear-gradient(270deg, #ffffff 0%, #f8fbff 100%);
|
|
24
|
-
$app-border-color: rgba(black, 0.12);
|
|
25
|
-
$app-headline-font: Korb, "Blogger Sans", "Source Sans Pro", Arial, sans-serif;
|
|
26
|
-
$app-font-family: "Source Sans Pro", Arial, sans-serif;
|
|
27
|
-
$app-button-font-family: "Blogger Sans", $app-font-family;
|
|
28
|
-
$app-border-radius: 4px;
|
|
29
|
-
|
|
30
|
-
// Form
|
|
31
|
-
$form-border-color: rgba(0, 0, 0, 0.42);
|
|
32
|
-
$form-control-font-size: 1rem;
|
|
33
|
-
$form-control-buffer: 6px;
|
|
34
|
-
$form-error-msg-background: rgb(255, 228, 231); //lux-warn-50 mit opacity: 0.5
|
|
35
|
-
|
|
36
|
-
// Button
|
|
37
|
-
$button-height: 2.8125rem;
|
|
38
|
-
$button-font-size: 1.375rem;
|
|
39
|
-
$button-fav-height: 2.8125rem;
|
|
40
|
-
|
|
41
|
-
// Fokus
|
|
42
|
-
$outline-width: 4px;
|
|
43
|
-
$outline-style: solid;
|
|
44
|
-
$outline-color-bright: #ffffff;
|
|
45
|
-
$outline-color-dark: #2e8533;
|
|
46
|
-
|
|
47
|
-
// Hover
|
|
48
|
-
$lux-hover-color: #e3ebf5;
|
|
49
|
-
$lux-hover-color-for-dark-background: #e3ebf5;
|
|
50
|
-
|
|
51
|
-
// Selektion
|
|
52
|
-
$lux-selected-border-color: #2e8533;
|
|
53
|
-
$lux-selected-bg-color: #e3ebf5;
|
|
54
|
-
|
|
55
|
-
// Stepper (large)
|
|
56
|
-
$lux-stepper-large-backdrop-bg: #636d76;
|
|
57
|
-
$lux-stepper-large-completed-fc: #2e8533;
|
|
58
|
-
|
|
59
|
-
$lux-stepper-large-nav-item-active-fc: #ffffff;
|
|
60
|
-
$lux-stepper-large-nav-item-active-bg: #003366;
|
|
61
|
-
$lux-stepper-large-nav-item-disabled-fg: #003366;
|
|
62
|
-
$lux-stepper-large-nav-item-disabled-bg: #eff3f6;
|
|
63
|
-
$lux-stepper-large-nav-item-completed-fg: #ffffff;
|
|
64
|
-
$lux-stepper-large-nav-item-completed-bg: #2e8533;
|
|
65
|
-
|
|
66
|
-
// Overlay
|
|
67
|
-
$lux-overlay-backdrop-color: rgba(0, 0, 0, 0.12);
|
|
68
|
-
|
|
69
|
-
// Options in Panels (z.B. Select, AutoComplete und Menu)
|
|
70
|
-
$lux-panel-option-min-height: 24px;
|
|
71
|
-
$lux-panel-option-padding: 12px 0;
|
|
72
|
-
|
|
73
|
-
// Hintergrundfarben (z.B. Badge oder Progress)
|
|
74
|
-
$componentBgColors: (
|
|
75
|
-
"red": map-get(map-get(luxpalette.$lux-palettes-new, 'error'), 40),
|
|
76
|
-
"green": map-get(map-get(luxpalette.$lux-palettes-new, 'tertiary'), 70),
|
|
77
|
-
"purple": #715289,
|
|
78
|
-
"blue": map-get(map-get(luxpalette.$lux-palettes-new, 'primary'), 20),
|
|
79
|
-
"gray": map-get(map-get(luxpalette.$lux-palettes-new, 'neutral'), 40),
|
|
80
|
-
"orange": #fc791f,
|
|
81
|
-
"black": map-get(map-get(luxpalette.$lux-palettes-new, 'neutral'), 10),
|
|
82
|
-
"white": #ffffff,
|
|
83
|
-
"yellow": #fbd12c,
|
|
84
|
-
"pink": #fc6b85,
|
|
85
|
-
"lightblue": #4fa8e8
|
|
86
|
-
);
|
|
87
|
-
|
|
88
|
-
// Vordergrundfarben (z.B. Badge)
|
|
89
|
-
$componentFontColors: (
|
|
90
|
-
"red": #ffffff,
|
|
91
|
-
"green": map-get(map-get(luxpalette.$lux-palettes-new, 'neutral'), 10),
|
|
92
|
-
"purple": #ffffff,
|
|
93
|
-
"blue": #ffffff,
|
|
94
|
-
"gray": #ffffff,
|
|
95
|
-
"orange": map-get(map-get(luxpalette.$lux-palettes-new, 'neutral'), 10),
|
|
96
|
-
"black": #ffffff,
|
|
97
|
-
"white": map-get(map-get(luxpalette.$lux-palettes-new, 'neutral'), 10),
|
|
98
|
-
"yellow": map-get(map-get(luxpalette.$lux-palettes-new, 'neutral'), 10),
|
|
99
|
-
"pink": map-get(map-get(luxpalette.$lux-palettes-new, 'neutral'), 10),
|
|
100
|
-
"lightblue": map-get(map-get(luxpalette.$lux-palettes-new, 'neutral'), 10)
|
|
101
|
-
);
|
|
102
|
-
|
|
103
|
-
// Farben für einen dunklen Hintergrund (z.B. Snackbar).
|
|
104
|
-
$colorsForDarkBg: (
|
|
105
|
-
"red": #f17474,
|
|
106
|
-
"green": #53b12b,
|
|
107
|
-
"blue": map-get(map-get(luxpalette.$lux-palettes-new, 'primary'), 80),
|
|
108
|
-
"orange": #ec9c1b,
|
|
109
|
-
"yellow": #fbd12c,
|
|
110
|
-
"white": #ffffff
|
|
111
|
-
);
|
|
112
|
-
|
|
113
|
-
// Tile
|
|
114
|
-
$lux-tile-font-hover-color: #2e8533;
|
|
115
|
-
$lux-tile-icon-color: #56bd66;
|
|
116
|
-
$lux-tile-borderradius: 24px;
|
|
117
|
-
$lux-tile-bottom-line-color: #56bd66;
|
|
@@ -1,231 +0,0 @@
|
|
|
1
|
-
@use "sass:map";
|
|
2
|
-
/*
|
|
3
|
-
Dieses Partial-SCSS dient der Verwaltung der Farb-Paletten für die LUX-Components.
|
|
4
|
-
*/
|
|
5
|
-
|
|
6
|
-
$lux-palette_primary: (
|
|
7
|
-
50 : #e0e7ed,
|
|
8
|
-
100 : #b3c2d1,
|
|
9
|
-
200 : #8099b3,
|
|
10
|
-
300 : #4d7094,
|
|
11
|
-
400 : #26527d,
|
|
12
|
-
500 : #003366,
|
|
13
|
-
600 : #002e5e,
|
|
14
|
-
700 : #002753,
|
|
15
|
-
800 : #002049,
|
|
16
|
-
900 : #001438,
|
|
17
|
-
A100 : #6e93ff,
|
|
18
|
-
A200 : #3b6cff,
|
|
19
|
-
A400 : #0846ff,
|
|
20
|
-
A700 : #003bee,
|
|
21
|
-
contrast: (
|
|
22
|
-
50 : #000000,
|
|
23
|
-
100 : #000000,
|
|
24
|
-
200 : #000000,
|
|
25
|
-
300 : #ffffff,
|
|
26
|
-
400 : #ffffff,
|
|
27
|
-
500 : #ffffff,
|
|
28
|
-
600 : #ffffff,
|
|
29
|
-
700 : #ffffff,
|
|
30
|
-
800 : #ffffff,
|
|
31
|
-
900 : #ffffff,
|
|
32
|
-
A100 : #000000,
|
|
33
|
-
A200 : #ffffff,
|
|
34
|
-
A400 : #ffffff,
|
|
35
|
-
A700 : #ffffff,
|
|
36
|
-
)
|
|
37
|
-
);
|
|
38
|
-
|
|
39
|
-
$lux-palette_accent: (
|
|
40
|
-
50 : #ebf7ed,
|
|
41
|
-
100 : #ccebd1,
|
|
42
|
-
200 : #abdeb3,
|
|
43
|
-
300 : #89d194,
|
|
44
|
-
400 : #6fc77d,
|
|
45
|
-
500 : #56bd66,
|
|
46
|
-
600 : #4fb75e,
|
|
47
|
-
700 : #45ae53,
|
|
48
|
-
800 : #3ca649,
|
|
49
|
-
900 : #2b9838,
|
|
50
|
-
A100 : #dcffe0,
|
|
51
|
-
A200 : #a9ffb2,
|
|
52
|
-
A400 : #76ff84,
|
|
53
|
-
A700 : #5dff6d,
|
|
54
|
-
contrast: (
|
|
55
|
-
50 : #000000,
|
|
56
|
-
100 : #000000,
|
|
57
|
-
200 : #000000,
|
|
58
|
-
300 : #000000,
|
|
59
|
-
400 : #ffffff,
|
|
60
|
-
500 : #ffffff,
|
|
61
|
-
600 : #ffffff,
|
|
62
|
-
700 : #ffffff,
|
|
63
|
-
800 : #ffffff,
|
|
64
|
-
900 : #ffffff,
|
|
65
|
-
A100 : #000000,
|
|
66
|
-
A200 : #000000,
|
|
67
|
-
A400 : #000000,
|
|
68
|
-
A700 : #000000,
|
|
69
|
-
)
|
|
70
|
-
);
|
|
71
|
-
|
|
72
|
-
$lux-palette_warn: (
|
|
73
|
-
50 : #fceaeb,
|
|
74
|
-
100 : #f9cbce,
|
|
75
|
-
200 : #f5a8ad,
|
|
76
|
-
300 : #f0858c,
|
|
77
|
-
400 : #ed6b73,
|
|
78
|
-
500 : #ea515a,
|
|
79
|
-
600 : #e74a52,
|
|
80
|
-
700 : #e44048,
|
|
81
|
-
800 : #e1373f,
|
|
82
|
-
900 : #bf0006,
|
|
83
|
-
A100 : #ffffff,
|
|
84
|
-
A200 : #ffe5e5,
|
|
85
|
-
A400 : #ffb2b4,
|
|
86
|
-
A700 : #ff989b,
|
|
87
|
-
contrast: (
|
|
88
|
-
50 : #000000,
|
|
89
|
-
100 : #000000,
|
|
90
|
-
200 : #000000,
|
|
91
|
-
300 : #000000,
|
|
92
|
-
400 : #000000,
|
|
93
|
-
500 : #ffffff,
|
|
94
|
-
600 : #ffffff,
|
|
95
|
-
700 : #ffffff,
|
|
96
|
-
800 : #ffffff,
|
|
97
|
-
900 : #ffffff,
|
|
98
|
-
A100 : #000000,
|
|
99
|
-
A200 : #000000,
|
|
100
|
-
A400 : #000000,
|
|
101
|
-
A700 : #000000,
|
|
102
|
-
)
|
|
103
|
-
);
|
|
104
|
-
|
|
105
|
-
$lux-primary-color: map.get($lux-palette_primary, 500);
|
|
106
|
-
$lux-accent-color: map.get($lux-palette_accent, 500);
|
|
107
|
-
$lux-warn-color: map.get($lux-palette_warn, 500);
|
|
108
|
-
|
|
109
|
-
$lux-palettes-new: (
|
|
110
|
-
primary: (
|
|
111
|
-
0: #000000,
|
|
112
|
-
5: #001129, //primary-900 und 800
|
|
113
|
-
10: #001b3c, //primary-700
|
|
114
|
-
15: #00264e, //primary-600
|
|
115
|
-
20: #003366, //primary-500
|
|
116
|
-
25: #0f3b6f,
|
|
117
|
-
30: #1f477b, //primary-400
|
|
118
|
-
35: #2d5387,
|
|
119
|
-
40: #3a5f94, //primary-300
|
|
120
|
-
50: #5478af,
|
|
121
|
-
60: #6e92ca, //primary-200
|
|
122
|
-
70: #89ace7,
|
|
123
|
-
80: #a7c8ff, //primary-100
|
|
124
|
-
90: #d5e3ff, //primary-50
|
|
125
|
-
95: #ecf1ff,
|
|
126
|
-
98: #f9f9ff,
|
|
127
|
-
99: #fdfbff,
|
|
128
|
-
100: #ffffff
|
|
129
|
-
),
|
|
130
|
-
secondary: (
|
|
131
|
-
0: #000000,
|
|
132
|
-
5: #0a111c,
|
|
133
|
-
10: #151c28,
|
|
134
|
-
15: #1f2632,
|
|
135
|
-
20: #2a313d,
|
|
136
|
-
25: #353c49,
|
|
137
|
-
30: #404754,
|
|
138
|
-
35: #4c5360,
|
|
139
|
-
40: #585f6c,
|
|
140
|
-
50: #707786,
|
|
141
|
-
60: #8a91a0,
|
|
142
|
-
70: #a4abbb,
|
|
143
|
-
80: #c0c6d7,
|
|
144
|
-
90: #dce2f3,
|
|
145
|
-
95: #ecf1ff,
|
|
146
|
-
98: #f9f9ff,
|
|
147
|
-
99: #fdfbff,
|
|
148
|
-
100: #ffffff
|
|
149
|
-
),
|
|
150
|
-
tertiary: (
|
|
151
|
-
0: #000000,
|
|
152
|
-
5: #001503,
|
|
153
|
-
10: #002107,
|
|
154
|
-
15: #002d0c,
|
|
155
|
-
20: #003911,
|
|
156
|
-
25: #004617,
|
|
157
|
-
30: #00531d, //accent-900
|
|
158
|
-
35: #006022,
|
|
159
|
-
40: #006e29, //accent-800
|
|
160
|
-
50: #198939, //accent-700
|
|
161
|
-
60: #3ca450, //accent-600
|
|
162
|
-
70: #56bd66, //accent-500
|
|
163
|
-
80: #75dc81, //accent-300 und 400
|
|
164
|
-
90: #90f99b, //accent-200
|
|
165
|
-
95: #c6ffc5, //accent-100
|
|
166
|
-
98: #ebffe6, //accent-50
|
|
167
|
-
99: #f6fff1,
|
|
168
|
-
100: #ffffff
|
|
169
|
-
),
|
|
170
|
-
neutral: (
|
|
171
|
-
0: #000000,
|
|
172
|
-
5: #111111,
|
|
173
|
-
10: #1c1b1b, //dark-primary-text
|
|
174
|
-
15: #262625,
|
|
175
|
-
20: #313030,
|
|
176
|
-
25: #3c3b3b,
|
|
177
|
-
30: #484646,
|
|
178
|
-
35: #535252,
|
|
179
|
-
40: #605e5e, //dark-secondary-text
|
|
180
|
-
50: #797776,
|
|
181
|
-
60: #929090, //form-border-color
|
|
182
|
-
70: #adaaaa,
|
|
183
|
-
80: #c9c6c5,
|
|
184
|
-
90: #e5e2e1, //app-border-color und dark-disabled-text
|
|
185
|
-
95: #f4f0ef,
|
|
186
|
-
98: #fcf8f8,
|
|
187
|
-
99: #f6feff,
|
|
188
|
-
100: #ffffff
|
|
189
|
-
),
|
|
190
|
-
neutral-variant: (
|
|
191
|
-
0: #000000,
|
|
192
|
-
5: #111111,
|
|
193
|
-
10: #1c1b1b,
|
|
194
|
-
15: #262625,
|
|
195
|
-
20: #313030,
|
|
196
|
-
25: #3c3b3b,
|
|
197
|
-
30: #484646,
|
|
198
|
-
35: #535252,
|
|
199
|
-
40: #5f5e5e,
|
|
200
|
-
50: #787776,
|
|
201
|
-
60: #929090,
|
|
202
|
-
70: #adabaa,
|
|
203
|
-
80: #c9c6c5,
|
|
204
|
-
90: #e5e2e1,
|
|
205
|
-
95: #f4f0ef,
|
|
206
|
-
98: #fcf8f8,
|
|
207
|
-
99: #f6feff,
|
|
208
|
-
100: #ffffff
|
|
209
|
-
),
|
|
210
|
-
error:
|
|
211
|
-
(
|
|
212
|
-
0: #000000,
|
|
213
|
-
5: #2d0001,
|
|
214
|
-
10: #410002,
|
|
215
|
-
15: #540004, //warn-900
|
|
216
|
-
20: #690005,
|
|
217
|
-
25: #7e0007, //warn-800
|
|
218
|
-
30: #93000a, //warn-700
|
|
219
|
-
35: #a80710, //warn-600
|
|
220
|
-
40: #ba1a1a, //warn-500
|
|
221
|
-
50: #ec2125, //warn-400
|
|
222
|
-
60: #ff5449, //warn-300
|
|
223
|
-
70: #ff897d, //warn-200
|
|
224
|
-
80: #ffb4ab, //warn-100
|
|
225
|
-
90: #ffdad6, //warn-50
|
|
226
|
-
95: #ffedea,
|
|
227
|
-
98: #fff8f7,
|
|
228
|
-
99: #fffbff,
|
|
229
|
-
100: #ffffff
|
|
230
|
-
)
|
|
231
|
-
);
|
package/src/green/luxtheme.scss
DELETED
|
@@ -1,117 +0,0 @@
|
|
|
1
|
-
@use "../public/global" with (
|
|
2
|
-
$app-font-family: (
|
|
3
|
-
"Source Sans Pro",
|
|
4
|
-
Helvetica,
|
|
5
|
-
Arial,
|
|
6
|
-
sans-serif
|
|
7
|
-
)
|
|
8
|
-
);
|
|
9
|
-
|
|
10
|
-
@use "luxpalette" as themePalette;
|
|
11
|
-
@use "../base/luxpalette" with (
|
|
12
|
-
// Farbpaletten
|
|
13
|
-
$lux-palette_primary: themePalette.$lux-palette_primary,
|
|
14
|
-
$lux-palette_accent: themePalette.$lux-palette_accent,
|
|
15
|
-
$lux-palette_warn: themePalette.$lux-palette_warn,
|
|
16
|
-
$lux-palettes-new: themePalette.$lux-palettes-new,
|
|
17
|
-
|
|
18
|
-
// Hauptfarben
|
|
19
|
-
$lux-primary-color: themePalette.$lux-primary-color,
|
|
20
|
-
$lux-accent-color: themePalette.$lux-accent-color,
|
|
21
|
-
$lux-warn-color: themePalette.$lux-warn-color
|
|
22
|
-
);
|
|
23
|
-
|
|
24
|
-
@use "luxcommon" as themeCommon;
|
|
25
|
-
@use "../base/luxcommon" with (
|
|
26
|
-
// Allgemein
|
|
27
|
-
$dark-primary-text: themeCommon.$dark-primary-text,
|
|
28
|
-
$dark-secondary-text: themeCommon.$dark-secondary-text,
|
|
29
|
-
$dark-disabled-text: themeCommon.$dark-disabled-text,
|
|
30
|
-
$dark-dividers: themeCommon.$dark-dividers,
|
|
31
|
-
$dark-focused: themeCommon.$dark-focused,
|
|
32
|
-
|
|
33
|
-
$light-primary-text: themeCommon.$light-primary-text,
|
|
34
|
-
$light-secondary-text: themeCommon.$light-secondary-text,
|
|
35
|
-
$light-disabled-text: themeCommon.$light-disabled-text,
|
|
36
|
-
$light-dividers: themeCommon.$light-dividers,
|
|
37
|
-
$light-focused: themeCommon.$light-focused,
|
|
38
|
-
|
|
39
|
-
// App
|
|
40
|
-
$app-header-bg: themeCommon.$app-header-bg,
|
|
41
|
-
$app-content-bg: themeCommon.$app-content-bg,
|
|
42
|
-
$app-footer-bg: themeCommon.$app-footer-bg,
|
|
43
|
-
$app-data-bg: themeCommon.$app-data-bg,
|
|
44
|
-
$app-gradient: themeCommon.$app-gradient,
|
|
45
|
-
$app-gradient-reverse: themeCommon.$app-gradient-reverse,
|
|
46
|
-
$app-border-color: themeCommon.$app-border-color,
|
|
47
|
-
$app-headline-font: themeCommon.$app-headline-font,
|
|
48
|
-
$app-font-family: themeCommon.$app-font-family,
|
|
49
|
-
$app-border-radius: themeCommon.$app-border-radius,
|
|
50
|
-
|
|
51
|
-
// Form
|
|
52
|
-
$form-border-color: themeCommon.$form-border-color,
|
|
53
|
-
$form-control-font-size: themeCommon.$form-control-font-size,
|
|
54
|
-
$form-control-buffer: themeCommon.$form-control-buffer,
|
|
55
|
-
$form-error-msg-background: themeCommon.$form-error-msg-background,
|
|
56
|
-
|
|
57
|
-
// Button
|
|
58
|
-
$button-height: themeCommon.$button-height,
|
|
59
|
-
$button-fav-height: themeCommon.$button-fav-height,
|
|
60
|
-
$button-font-size: themeCommon.$button-font-size,
|
|
61
|
-
|
|
62
|
-
// Fokus
|
|
63
|
-
$outline-width: themeCommon.$outline-width,
|
|
64
|
-
$outline-style: themeCommon.$outline-style,
|
|
65
|
-
$outline-color-bright: themeCommon.$outline-color-bright,
|
|
66
|
-
$outline-color-dark: themeCommon.$outline-color-dark,
|
|
67
|
-
|
|
68
|
-
// Hover
|
|
69
|
-
$lux-hover-color: themeCommon.$lux-hover-color,
|
|
70
|
-
$lux-hover-color-for-dark-background: themeCommon.$lux-hover-color-for-dark-background,
|
|
71
|
-
|
|
72
|
-
// Selektion
|
|
73
|
-
$lux-selected-border-color: themeCommon.$lux-selected-border-color,
|
|
74
|
-
$lux-selected-bg-color: themeCommon.$lux-selected-bg-color,
|
|
75
|
-
|
|
76
|
-
// Stepper (large)
|
|
77
|
-
$lux-stepper-large-backdrop-bg: themeCommon.$lux-stepper-large-backdrop-bg,
|
|
78
|
-
$lux-stepper-large-completed-fc: themeCommon.$lux-stepper-large-completed-fc,
|
|
79
|
-
|
|
80
|
-
$lux-stepper-large-nav-item-active-fc: themeCommon.$lux-stepper-large-nav-item-active-fc,
|
|
81
|
-
$lux-stepper-large-nav-item-active-bg: themeCommon.$lux-stepper-large-nav-item-active-bg,
|
|
82
|
-
$lux-stepper-large-nav-item-disabled-fg: themeCommon.$lux-stepper-large-nav-item-disabled-fg,
|
|
83
|
-
$lux-stepper-large-nav-item-disabled-bg: themeCommon.$lux-stepper-large-nav-item-disabled-bg,
|
|
84
|
-
$lux-stepper-large-nav-item-completed-fg: themeCommon.$lux-stepper-large-nav-item-completed-fg,
|
|
85
|
-
$lux-stepper-large-nav-item-completed-bg: themeCommon.$lux-stepper-large-nav-item-completed-bg,
|
|
86
|
-
|
|
87
|
-
// Overlay
|
|
88
|
-
$lux-overlay-backdrop-color: themeCommon.$lux-overlay-backdrop-color,
|
|
89
|
-
|
|
90
|
-
// Options in Panels (z.B. Select, AutoComplete und Menu)
|
|
91
|
-
$lux-panel-option-min-height: themeCommon.$lux-panel-option-min-height,
|
|
92
|
-
$lux-panel-option-padding: themeCommon.$lux-panel-option-padding,
|
|
93
|
-
|
|
94
|
-
// Hintergrundfarben (z.B. Badge oder Progress)
|
|
95
|
-
$componentBgColors: themeCommon.$componentBgColors,
|
|
96
|
-
|
|
97
|
-
// Vordergrundfarben (z.B. Badge)
|
|
98
|
-
$componentFontColors: themeCommon.$componentFontColors,
|
|
99
|
-
|
|
100
|
-
// Farben für einen dunklen Hintergrund (z.B. Snackbar).
|
|
101
|
-
$colorsForDarkBg: themeCommon.$colorsForDarkBg,
|
|
102
|
-
|
|
103
|
-
// Tile
|
|
104
|
-
$lux-tile-font-hover-color: themeCommon.$lux-tile-font-hover-color,
|
|
105
|
-
$lux-tile-icon-color: themeCommon.$lux-tile-icon-color,
|
|
106
|
-
$lux-tile-borderradius: themeCommon.$lux-tile-borderradius,
|
|
107
|
-
$lux-tile-bottom-line-color: themeCommon.$lux-tile-bottom-line-color
|
|
108
|
-
);
|
|
109
|
-
@use "../base/luxSvgIcons";
|
|
110
|
-
@use "../base/luxelevations";
|
|
111
|
-
@use "../base/luxcomponents";
|
|
112
|
-
@use "../base/luxfocus";
|
|
113
|
-
@use "../base/luxstyles";
|
|
114
|
-
@use "../base/luxtheme";
|
|
115
|
-
@use "../base/luxbreakpoints";
|
|
116
|
-
@use "../base/luxlayout";
|
|
117
|
-
@use "custom";
|
package/src/public/global.scss
DELETED
|
@@ -1,113 +0,0 @@
|
|
|
1
|
-
// Media Queries
|
|
2
|
-
$mat-xsmall: "max-width: 599px" !default;
|
|
3
|
-
$mat-small: "max-width: 959px" !default;
|
|
4
|
-
$mat-medium: "max-width: 1279px" !default;
|
|
5
|
-
$mat-large: "max-width: 1919px" !default;
|
|
6
|
-
$mat-xlarge: "max-width: 5000px" !default;
|
|
7
|
-
|
|
8
|
-
// Font
|
|
9
|
-
$app-font-family:
|
|
10
|
-
Source Sans Pro,
|
|
11
|
-
Helvetica Neue,
|
|
12
|
-
sans-serif !default;
|
|
13
|
-
|
|
14
|
-
html body {
|
|
15
|
-
--mat-checkbox-label-text-font: #{$app-font-family};
|
|
16
|
-
--mat-switch-label-text-font: #{$app-font-family};
|
|
17
|
-
--mat-stepper-container-text-font: #{$app-font-family};
|
|
18
|
-
--mat-stepper-header-label-text-font: #{$app-font-family};
|
|
19
|
-
--mat-expansion-header-text-font: #{$app-font-family};
|
|
20
|
-
--mat-expansion-container-text-font: #{$app-font-family};
|
|
21
|
-
--mat-datepicker-calendar-text-font: #{$app-font-family};
|
|
22
|
-
--mat-legacy-button-toggle-text-font: #{$app-font-family};
|
|
23
|
-
--mat-standard-button-toggle-text-font: #{$app-font-family};
|
|
24
|
-
--mat-bottom-sheet-container-text-font: #{$app-font-family};
|
|
25
|
-
--mat-badge-text-font: #{$app-font-family};
|
|
26
|
-
--mat-toolbar-title-text-font: #{$app-font-family};
|
|
27
|
-
--mat-stepper-container-text-font: #{$app-font-family};
|
|
28
|
-
--mat-stepper-header-label-text-font: #{$app-font-family};
|
|
29
|
-
--mat-expansion-header-text-font: #{$app-font-family};
|
|
30
|
-
--mat-expansion-container-text-font: #{$app-font-family};
|
|
31
|
-
--mat-datepicker-calendar-text-font: #{$app-font-family};
|
|
32
|
-
--mat-legacy-button-toggle-text-font: #{$app-font-family};
|
|
33
|
-
--mat-standard-button-toggle-text-font: #{$app-font-family};
|
|
34
|
-
--mat-bottom-sheet-container-text-font: #{$app-font-family};
|
|
35
|
-
--mat-badge-text-font: #{$app-font-family};
|
|
36
|
-
--mat-table-header-headline-font: #{$app-font-family};
|
|
37
|
-
--mat-table-row-item-label-text-font: #{$app-font-family};
|
|
38
|
-
--mat-table-footer-supporting-text-font: #{$app-font-family};
|
|
39
|
-
--mat-paginator-container-text-font: #{$app-font-family};
|
|
40
|
-
--mat-menu-item-label-text-font: #{$app-font-family};
|
|
41
|
-
--mat-select-trigger-text-font: #{$app-font-family};
|
|
42
|
-
--mdc-filled-text-field-label-text-font: #{$app-font-family};
|
|
43
|
-
--mdc-outlined-text-field-label-text-font: #{$app-font-family};
|
|
44
|
-
--mat-form-field-container-text-font: #{$app-font-family};
|
|
45
|
-
--mat-form-field-subscript-text-font: #{$app-font-family};
|
|
46
|
-
--mat-optgroup-label-text-font: #{$app-font-family};
|
|
47
|
-
--mat-option-label-text-font: #{$app-font-family};
|
|
48
|
-
|
|
49
|
-
--mat-option-label-text-size: 1rem;
|
|
50
|
-
--mat-optgroup-label-text-size: 1rem;
|
|
51
|
-
--mat-card-title-text-size: 1.25rem;
|
|
52
|
-
--mat-card-subtitle-text-size: 0.875rem;
|
|
53
|
-
--mdc-filled-text-field-label-text-size: 1rem;
|
|
54
|
-
--mdc-outlined-text-field-label-text-size: 1rem;
|
|
55
|
-
--mat-form-field-container-text-size: 1rem;
|
|
56
|
-
--mat-form-field-subscript-text-size: 0.75rem;
|
|
57
|
-
--mat-select-trigger-text-size: 1rem;
|
|
58
|
-
--mdc-dialog-supporting-text-size: 1rem;
|
|
59
|
-
--mdc-slider-label-label-text-size: 0.875rem;
|
|
60
|
-
--mat-menu-item-label-text-size: 1rem;
|
|
61
|
-
--mdc-list-list-item-label-text-size: 1rem;
|
|
62
|
-
--mdc-list-list-item-supporting-text-size: 0.875rem;
|
|
63
|
-
--mdc-list-list-item-trailing-supporting-text-size: 0.75rem;
|
|
64
|
-
--mat-paginator-container-text-size: 0.75rem;
|
|
65
|
-
--mat-paginator-select-trigger-text-size: 0.75rem;
|
|
66
|
-
--mat-checkbox-label-text-size: 0.875rem;
|
|
67
|
-
--mdc-text-button-label-text-size: 0.875rem;
|
|
68
|
-
--mdc-filled-button-label-text-size: 0.875rem;
|
|
69
|
-
--mdc-protected-button-label-text-size: 0.875rem;
|
|
70
|
-
--mdc-outlined-button-label-text-size: 0.875rem;
|
|
71
|
-
--mdc-extended-fab-label-text-size: 0.875rem;
|
|
72
|
-
--mdc-snackbar-supporting-text-size: 0.875rem;
|
|
73
|
-
--mat-table-row-item-label-text-size: 0.875rem;
|
|
74
|
-
--mat-table-footer-supporting-text-size: 0.875rem;
|
|
75
|
-
--mat-badge-text-size: 0.75rem;
|
|
76
|
-
--mat-badge-small-size-text-size: 0.5625rem;
|
|
77
|
-
--mat-badge-large-size-text-size: 1.5rem;
|
|
78
|
-
--mat-bottom-sheet-container-text-size: 0.875rem;
|
|
79
|
-
--mat-legacy-button-toggle-label-text-size: 1rem;
|
|
80
|
-
--mat-standard-button-toggle-label-text-size: 1rem;
|
|
81
|
-
--mat-datepicker-calendar-text-size: 0.8125rem;
|
|
82
|
-
--mat-datepicker-calendar-body-label-text-size: 0.875rem;
|
|
83
|
-
--mat-datepicker-calendar-period-button-text-size: 0.875rem;
|
|
84
|
-
--mat-datepicker-calendar-header-text-size: 0.6875rem;
|
|
85
|
-
--mat-expansion-header-text-size: 0.875rem;
|
|
86
|
-
--mat-expansion-container-text-size: 0.875rem;
|
|
87
|
-
--mat-grid-list-tile-header-primary-text-size: 0.875rem;
|
|
88
|
-
--mat-grid-list-tile-header-secondary-text-size: 0.75rem;
|
|
89
|
-
--mat-grid-list-tile-footer-primary-text-size: 0.875rem;
|
|
90
|
-
--mat-grid-list-tile-footer-secondary-text-size: 0.75rem;
|
|
91
|
-
--mat-stepper-header-label-text-size: 0.875rem;
|
|
92
|
-
--mat-stepper-header-error-state-label-text-size: 1rem;
|
|
93
|
-
--mat-stepper-header-selected-state-label-text-size: 1rem;
|
|
94
|
-
--mat-toolbar-title-text-size: 1.25rem;
|
|
95
|
-
--mat-tree-node-text-size: 0.875rem;
|
|
96
|
-
}
|
|
97
|
-
|
|
98
|
-
.mat-mdc-snack-bar-container .mdc-snackbar__label {
|
|
99
|
-
--mdc-snackbar-supporting-text-line-height: 1.25rem;
|
|
100
|
-
}
|
|
101
|
-
|
|
102
|
-
.mat-mdc-radio-button .mat-internal-form-field {
|
|
103
|
-
--mat-radio-label-text-size: 0.875rem;
|
|
104
|
-
}
|
|
105
|
-
|
|
106
|
-
.mat-mdc-standard-chip .mdc-evolution-chip__text-label {
|
|
107
|
-
--mdc-chip-label-text-size: 0.875rem;
|
|
108
|
-
}
|
|
109
|
-
|
|
110
|
-
.mat-mdc-tooltip-surface {
|
|
111
|
-
--mdc-plain-tooltip-supporting-text-font: #{$app-font-family};
|
|
112
|
-
--mdc-plain-tooltip-supporting-text-size: 0.75rem;
|
|
113
|
-
}
|
|
File without changes
|
|
File without changes
|