Add CSS variables for header cell background and toast message border for more flexible themeing
12 lines
318 B
CSS
12 lines
318 B
CSS
.datatable {
|
|
--border-color: #424242;
|
|
--light-bg: #2e3538;
|
|
--text-color: #dfe2e5;
|
|
--text-light: #dfe2e5;
|
|
--cell-bg: #1c1f20;
|
|
--focus-border-width: 1px;
|
|
--selection-highlight-color: var(--light-bg);
|
|
--toast-message-border: 1px solid var(--border-color);
|
|
--header-cell-bg: #262c2e;
|
|
}
|