-
Notifications
You must be signed in to change notification settings - Fork 27
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
0cf8fab
commit 2e05141
Showing
32 changed files
with
5,954 additions
and
3,536 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,14 @@ | ||
<link rel="preconnect" href="https://fonts.googleapis.com"> | ||
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin> | ||
<link | ||
href="https://fonts.googleapis.com/css2?family=Inter:[email protected]&family=Noto+Serif:ital,wght@0,100..900;1,100..900&family=Roboto+Mono:ital,wght@0,100..700;1,100..700&display=swap" | ||
rel="stylesheet"> | ||
|
||
|
||
<style> | ||
#storybook-root { | ||
width: 100%; | ||
display: grid; | ||
place-items: center; | ||
} | ||
</style> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,8 @@ | ||
import { addons } from "@storybook/manager-api"; | ||
import "../src/index.css"; | ||
import "../src/theme.css"; | ||
import theme from "./theme"; | ||
|
||
addons.setConfig({ | ||
theme: theme, | ||
}); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,39 @@ | ||
import { create } from "@storybook/theming/create"; | ||
|
||
export default create({ | ||
base: "light", | ||
// Typography | ||
fontBase: '"Inter", sans-serif', | ||
fontCode: '"Roboto Mono", monospace', | ||
|
||
brandTitle: "Fima SDS", | ||
brandUrl: "https://figma.com", | ||
brandTarget: "_self", | ||
|
||
// | ||
colorPrimary: "#3A10E5", | ||
colorSecondary: "#585C6D", | ||
|
||
// UI | ||
appBg: "#ffffff", | ||
appContentBg: "#ffffff", | ||
appPreviewBg: "#ffffff", | ||
appBorderColor: "#f5f5f5", | ||
appBorderRadius: 4, | ||
|
||
// Text colors | ||
textColor: "#1e1e1e", | ||
textInverseColor: "#ffffff", | ||
|
||
// Toolbar default and active colors | ||
barTextColor: "#9E9E9E", | ||
barSelectedColor: "#585C6D", | ||
barHoverColor: "#585C6D", | ||
barBg: "#ffffff", | ||
|
||
// Form colors | ||
inputBg: "#ffffff", | ||
inputBorder: "#f5f5f5", | ||
inputTextColor: "#1e1e1e", | ||
inputBorderRadius: 2, | ||
}); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.