olifolkerd / tabulator

Interactive Tables and Data Grids for JavaScript
http://tabulator.info
MIT License
6.71k stars 818 forks source link

Bootstrap 5 dark mode support #4380

Closed MarcJo closed 8 months ago

MarcJo commented 8 months ago

In order tabulator works with bootstrap 5.3 themes you have to do following:

  1. Change into sass variables tabulator.scss darken and lighten mixins
  2. Change remaining hard coded colors into sass variables

I test this by manually change darken / lighten mixins with css filter:brightness and set sass variables like this

:root,
[data-bs-theme=light] {
    --tt-table-active-bg : #9ABCEA;
    --tt-table-active-bg-hover: color-mix(in srgb, var(--tt-table-active-bg), black 30%)
}

//Main Theme Variables
$backgroundColor: var(--bs-table-bg) !default; //background color of tabulator
$borderColor:var(--bs-table-border-color) !default; //border to tabulator
$textSize:16px !default; //table text size

//header theming
$headerBackgroundColor:var(--bs-table-bg) !default; //border to tabulator
$headerForegroundColor:inherit !default; //border to tabulator
$headerSeparatorColor:var(--bs-table-border-color) !default; //header bottom separator color
$headerTextColor:var(--bs-table-color) !default; //header text color
$headerBorderColor:var(--bs-table-border-color) !default;  //header border color
$headerMargin:4px !default; //padding round header

//
$cellPadding:12px !default; //padding round header

//column header arrows
$sortArrowHover: color-mix(in srgb, var(--bs-primary), var(--bs-gray-500) 40%) !default; //#555 !default;
$sortArrowActive: color-mix(in srgb, var(--bs-primary), black 0%) !default; //#666 !default;
$sortArrowInactive: color-mix(in srgb, var(--bs-gray-500), white 30%) !default; //#bbb !default;

//row theming
$rowBackgroundColor:var(--bs-table-bg) !default; //table row background color
$rowTextColor:var(--bs-table-color) !default; //table text color
$rowAltBackgroundColor: var(--bs-table-striped-bg) !default; //table row background color
$rowBorderColor:var(--bs-table-border-color) !default; //table border color
$rowHoverBackground:var(--bs-table-hover-bg) !default; //row background color on hover

//
$rowSelectedBackground: var(--tt-table-active-bg) !default; //row background color when selected
$rowSelectedBackgroundHover: var(--tt-table-active-bg-hover)  !default; //row background color when selected and hovered

$editBoxColor:var(--bs-primary) !default; //border color for edit boxes
$errorColor:var(--bs-danger) !default; //error indication

//footer theming
$footerBackgroundColor:var(--bs-table-bg) !default; //border to tabulator
$footerTextColor:var(--bs-table-color) !default; //footer text color
$footerBorderColor:var(--bs-table-border-color) !default; //footer border color
$footerSeparatorColor:var(--bs-table-border-color) !default; //footer bottom separator color
$footerActiveColor:var(--bs-table-active-color) !default; //footer bottom active text color

$table-cell-padding-sm: 5px;

//
$popupBackgroundColor:var(--bs-gray-900) !default; //table row background color
$popupTextColor:var(--bs-gray-100) !default; //table text color

Works great (light / dark theme) for basic tables even with editing.

Would be great if you have time look into this, at least pt.1 because it breaks above code, so each update will force to do it manually.

thx

olifolkerd commented 8 months ago

Hey @MarcJo

Im afraid i dont follow, Tabulator already has a Boostrap 5 built in.

If you would like to make changes to the built in theme, please feel free to submit a PR with the updates.

Cheers

Oli :)

MarcJo commented 7 months ago

My mistake, I wasn't very detailed. Of course I meant color themes, dark/light mode via css. My 'solution' addressed this issue.

I have little experience with Bootstrap and I don't know if this is a good option for Tabulator. All I know is that for basic use cases it works flawlessly.

thx

lordofthemoon commented 3 months ago

Hi, I think this is referring to the colour modes added in Bootstrap 5.3: https://getbootstrap.com/docs/5.3/customize/color-modes/

This adds support for light/dark mode