UNPKG

@adaptabletools/adaptable

Version:

Powerful AG Grid extension which provides advanced, cutting-edge functionality to meet all DataGrid requirements

11 lines (10 loc) 685 B
import { SummaryOperation } from '../../AdaptableState/Common/Enums'; import { getSwatchColorVar } from '../../View/UIHelper'; import { LIGHT_THEME, DARK_THEME, OS_THEME } from './GeneralConstants'; export const CELL_SUMMARY_DEFAULT_OPERATION = SummaryOperation.Sum; export const QUICK_SEARCH_DEFAULT_TEXT_BACK_COLOR = getSwatchColorVar(9); export const QUICK_SEARCH_DEFAULT_CELL_BACK_COLOR = getSwatchColorVar(10); export const QUICK_SEARCH_DEFAULT_FORE_COLOR = getSwatchColorVar(1); export const QUICK_SEARCH_DEFAULT_CURRENT_BACK_COLOR = getSwatchColorVar(20); export const SYSTEM_THEMES = [LIGHT_THEME, DARK_THEME, OS_THEME]; export const THEME_DEFAULT_CURRENT_THEME = LIGHT_THEME;