File size: 707 Bytes
a03b3ba
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
import { create } from "@storybook/theming/create";
import Logo from "./public/gradio.svg";

export default create({
	base: "light",
	brandTitle: "Gradio Storybook",
	brandUrl: "https://gradio.app",
	brandImage: Logo,
	brandTarget: "_blank",

	fontBase: '"Source Sans Pro", sans-serif',
	fontCode: "monospace",

	// theme colours
	colorPrimary: "#101827",
	colorSecondary: "#FF7C01",

	// UI
	appBg: "#ffffff", // change to #101827 in dark mode
	appContentBg: "#ffffff",
	appBorderRadius: 4,

	// text colors
	textColor: "#101827",
	textInverseColor: "#101827",
	textMutedColor: "#101827",

	// toolbar default and active colors
	barTextColor: "#101827",
	barSelectedColor: "#FF7C01",
	barBg: "#ffffff"
});