Files
pezkuwi-apps/packages/react-components/src/themes.ts
T

13 lines
272 B
TypeScript

// Copyright 2017-2026 @pezkuwi/react-components authors & contributors
// SPDX-License-Identifier: Apache-2.0
import type { ThemeDef } from './types.js';
export const darkTheme: ThemeDef = {
theme: 'dark'
};
export const lightTheme: ThemeDef = {
theme: 'light'
};