TimelineKit

Theming & Localization

Themes

The Kanban Board ships with light and dark themes. See the Theming & Styles guide for general theming concepts.

import { LightKanbanBoardTheme, DarkKanbanBoardTheme } from '@timelinekit/core';

// Apply a built-in theme
board.settings.theme = new DarkKanbanBoardTheme();

// Customize a theme
const theme = new LightKanbanBoardTheme();
// Modify theme properties...
board.settings.theme = theme;

Localization

The Kanban Board supports all locales available in TimelineKit. See the Localization guide for full details.

import { csLocale, deLocale, frLocale } from '@timelinekit/core';

// Switch locale
board.settings.locale = csLocale;