Add scribble

This commit is contained in:
ad1992 2021-10-28 13:46:56 +05:30
parent 468f20ae58
commit ae2ab5f03a
4 changed files with 12 additions and 2 deletions

View File

@ -16,6 +16,10 @@
font-family: "Redacted"; font-family: "Redacted";
src: url("redacted-script-regular.woff2"); src: url("redacted-script-regular.woff2");
font-display: swap; font-display: swap;
font-weight: normal; }
font-style: normal;
@font-face {
font-family: "Scribble";
src: url("scribble-webfont.woff2");
font-display: swap;
} }

Binary file not shown.

View File

@ -532,6 +532,11 @@ export const actionChangeFontFamily = register({
text: t("labels.wireframe"), text: t("labels.wireframe"),
icon: <FontFamilyWireframeIcon theme={appState.theme} />, icon: <FontFamilyWireframeIcon theme={appState.theme} />,
}, },
{
value: FONT_FAMILY.SCRIBBLE,
text: t("labels.wireframe"),
icon: <FontFamilyWireframeIcon theme={appState.theme} />,
},
]; ];
return ( return (

View File

@ -69,6 +69,7 @@ export const FONT_FAMILY = {
Helvetica: 2, Helvetica: 2,
Cascadia: 3, Cascadia: 3,
REDACTED: 4, REDACTED: 4,
SCRIBBLE: 5,
}; };
export const THEME = { export const THEME = {