mirror of
https://github.com/element-hq/element-web.git
synced 2025-12-28 07:14:20 +00:00
22 lines
449 B
TypeScript
22 lines
449 B
TypeScript
import { create } from "storybook/theming";
|
|
|
|
export default create({
|
|
base: "light",
|
|
|
|
// Colors
|
|
textColor: "#1b1d22",
|
|
colorSecondary: "#111111",
|
|
|
|
// UI
|
|
appBg: "#ffffff",
|
|
appContentBg: "#ffffff",
|
|
|
|
// Toolbar
|
|
barBg: "#ffffff",
|
|
|
|
brandTitle: "Element Web",
|
|
brandUrl: "https://github.com/element-hq/element-web",
|
|
brandImage: "https://element.io/images/logo-ele-secondary.svg",
|
|
brandTarget: "_self",
|
|
});
|