File tree Expand file tree Collapse file tree 2 files changed +3
-1
lines changed Expand file tree Collapse file tree 2 files changed +3
-1
lines changed Original file line number Diff line number Diff line change @@ -97,7 +97,7 @@ export const ColoredTable = styled(Table)`
97
97
/* Show the header in deep blue */
98
98
th.mll-ant-table-cell {
99
99
background-color: ${ ( props ) => props . theme . tableHeaderBackgroundColor } ;
100
- color: white ;
100
+ color: ${ ( props ) => props . theme . tableHeaderFontColor } ;
101
101
}
102
102
103
103
/* Less jarring than the default hover color */
Original file line number Diff line number Diff line change @@ -55,6 +55,7 @@ export type Theme = {
55
55
warningColor : string ;
56
56
57
57
tableHeaderBackgroundColor : string ;
58
+ tableHeaderFontColor : string ;
58
59
tableRowStripeBackgroundColor : string ;
59
60
60
61
fontSize ?: string ;
@@ -75,6 +76,7 @@ export const THEME: Theme = {
75
76
panelBackgroundColor : PALETTE . gray3 ,
76
77
tableBorderColor : PALETTE . gray4 ,
77
78
tableHeaderBackgroundColor : PALETTE . tableHeaderBackgroundColor ,
79
+ tableHeaderFontColor : PALETTE . white ,
78
80
tableRowStripeBackgroundColor : PALETTE . tableRowStripeBackgroundColor ,
79
81
titleColor : PALETTE . gray5 ,
80
82
disabledColors : {
You can’t perform that action at this time.
0 commit comments