mirror of
https://github.com/vector-im/element-call.git
synced 2026-05-01 09:54:37 +00:00
32 lines
720 B
TypeScript
32 lines
720 B
TypeScript
/*
|
|
Copyright 2026 Element Creations Ltd.
|
|
|
|
SPDX-License-Identifier: AGPL-3.0-only OR LicenseRef-Element-Commercial
|
|
Please see LICENSE in the repository root for full details.
|
|
*/
|
|
|
|
import { create } from "storybook/theming";
|
|
import { addons } from "storybook/manager-api";
|
|
|
|
addons.setConfig({
|
|
theme: create({
|
|
base: "light",
|
|
colorPrimary: "#1b1d22",
|
|
colorSecondary: "#0467dd",
|
|
|
|
// Typography
|
|
fontBase: '"Inter", sans-serif',
|
|
fontCode: '"Inconsolata", monospace',
|
|
|
|
// Text colors
|
|
textColor: "#1b1d22",
|
|
appBg: "#ffffff",
|
|
barBg: "#ffffff",
|
|
|
|
brandTitle: "Element Call",
|
|
brandUrl: "https://element.io/",
|
|
brandImage: "/src/icons/Logo.svg",
|
|
brandTarget: "_self",
|
|
}),
|
|
});
|