Theming improvements:

- renamed `@disabledText` to `@disabledForeground`
- renamed `@textComponentBackground` to `@componentBackground`
- renamed `@textComponentMargin` to `@componentMargin`
- added `@disabledBackground`

(Note: this are incompatible changes!)
This commit is contained in:
Karl Tauber
2021-10-03 23:15:51 +02:00
parent 4db39828ef
commit f0c314df80
9 changed files with 78 additions and 67 deletions

View File

@@ -28,19 +28,19 @@ JXHeader.startBackground = #4c5052
#---- HighlighterFactory ----
UIColorHighlighter.stripingBackground = lighten(@textComponentBackground,5%)
UIColorHighlighter.stripingBackground = lighten(@componentBackground,5%)
#---- Hyperlink ----
Hyperlink.linkColor = $Component.linkColor
Hyperlink.visitedColor = $Hyperlink.linkColor
Hyperlink.disabledText = @disabledText
Hyperlink.disabledText = @disabledForeground
#---- MonthView ----
JXMonthView.background = @textComponentBackground
JXMonthView.background = @componentBackground
JXMonthView.monthStringBackground = #4c5052
JXMonthView.monthStringForeground = @foreground
JXMonthView.daysOfTheWeekForeground = #aaa
@@ -48,10 +48,10 @@ JXMonthView.weekOfTheYearForeground = #888
JXMonthView.unselectableDayForeground = #E05555
JXMonthView.selectedBackground = @selectionBackground
JXMonthView.flaggedDayForeground = #E05555
JXMonthView.leadingDayForeground = @disabledText
JXMonthView.trailingDayForeground = @disabledText
JXMonthView.leadingDayForeground = @disabledForeground
JXMonthView.trailingDayForeground = @disabledForeground
JXMonthView.arrowColor = @foreground
JXMonthView.disabledArrowColor = @disabledText
JXMonthView.disabledArrowColor = @disabledForeground
#---- TaskPaneContainer ----

View File

@@ -28,19 +28,19 @@ JXHeader.startBackground = #fff
#---- HighlighterFactory ----
UIColorHighlighter.stripingBackground = darken(@textComponentBackground,5%)
UIColorHighlighter.stripingBackground = darken(@componentBackground,5%)
#---- Hyperlink ----
Hyperlink.linkColor = $Component.linkColor
Hyperlink.visitedColor = $Hyperlink.linkColor
Hyperlink.disabledText = @disabledText
Hyperlink.disabledText = @disabledForeground
#---- MonthView ----
JXMonthView.background = @textComponentBackground
JXMonthView.background = @componentBackground
JXMonthView.monthStringBackground = #dfdfdf
JXMonthView.monthStringForeground = @foreground
JXMonthView.daysOfTheWeekForeground = #444
@@ -48,10 +48,10 @@ JXMonthView.weekOfTheYearForeground = #666
JXMonthView.unselectableDayForeground = #E02222
JXMonthView.selectedBackground = changeLightness(@selectionBackground,85%)
JXMonthView.flaggedDayForeground = #E02222
JXMonthView.leadingDayForeground = @disabledText
JXMonthView.trailingDayForeground = @disabledText
JXMonthView.leadingDayForeground = @disabledForeground
JXMonthView.trailingDayForeground = @disabledForeground
JXMonthView.arrowColor = @foreground
JXMonthView.disabledArrowColor = @disabledText
JXMonthView.disabledArrowColor = @disabledForeground
#---- TaskPaneContainer ----