2020-08-22 05:18:36 +03:00
|
|
|
export const values = {
|
|
|
|
version: "0.1.0",
|
|
|
|
sds: "0.1.0",
|
|
|
|
};
|
|
|
|
|
|
|
|
export const sizes = {
|
|
|
|
mobile: 768,
|
|
|
|
navigation: 288,
|
|
|
|
sidebar: 416,
|
|
|
|
header: 72,
|
|
|
|
};
|
|
|
|
|
2020-08-22 05:31:43 +03:00
|
|
|
export const system = {
|
|
|
|
white: "#ffffff",
|
|
|
|
foreground: "#f7f7f7",
|
|
|
|
gray: "#e0e0e0",
|
|
|
|
border: "#d8d8d8",
|
|
|
|
darkGray: "#b2b2b2",
|
|
|
|
black: "#1b1f23",
|
|
|
|
pitchBlack: "#0c0c0c",
|
|
|
|
brand: "#0047FF",
|
|
|
|
link: "#2935ff",
|
|
|
|
green: "#28a745",
|
|
|
|
yellow: " #FFC940",
|
|
|
|
red: "#ff0000",
|
|
|
|
};
|
|
|
|
|
2020-08-22 05:32:34 +03:00
|
|
|
export const zindex = {
|
|
|
|
navigation: 1,
|
2020-08-26 07:13:02 +03:00
|
|
|
sidebar: 4,
|
2020-08-22 05:32:34 +03:00
|
|
|
header: 3,
|
2020-08-26 07:13:02 +03:00
|
|
|
modal: 5,
|
|
|
|
tooltip: 6,
|
2020-08-22 05:32:34 +03:00
|
|
|
};
|
|
|
|
|
|
|
|
export const font = {
|
|
|
|
text: `'inter-regular', -apple-system, BlinkMacSystemFont, arial, sans-serif`,
|
|
|
|
semiBold: `'inter-semi-bold', -apple-system, BlinkMacSystemFont, arial, sans-serif`,
|
|
|
|
medium: `'inter-medium', -apple-system, BlinkMacSystemFont, arial, sans-serif`,
|
|
|
|
mono: `'mono', monaco, monospace`,
|
|
|
|
monoBold: `'mono-bold', monaco, monospace`,
|
|
|
|
monoCode: `'fira-code-regular', mono, monospace`,
|
|
|
|
monoCodeBold: `'fira-code-bold', mono-bold, monospace`,
|
|
|
|
code: `'jet-brains-regular', mono, monospace`,
|
|
|
|
codeBold: `'jet-brains-bold', mono, monospace`,
|
|
|
|
};
|
|
|
|
|
|
|
|
export const typescale = {
|
|
|
|
lvl1: `1rem`,
|
|
|
|
lvl2: `1.25rem`,
|
|
|
|
lvl3: `1.563rem`,
|
|
|
|
lvl4: `1.953rem`,
|
|
|
|
};
|
|
|
|
|
2020-08-22 05:18:36 +03:00
|
|
|
export const code = {};
|
|
|
|
|
|
|
|
export const theme = {
|
|
|
|
foreground: system.white,
|
|
|
|
ctaBackground: system.brand,
|
|
|
|
pageBackground: system.foreground,
|
|
|
|
pageText: system.black,
|
|
|
|
};
|
2020-08-25 20:46:41 +03:00
|
|
|
|
|
|
|
export const gateways = {
|
|
|
|
ipfs: "ipfs.slate.textile.io",
|
2020-08-26 07:13:02 +03:00
|
|
|
};
|