import * as React from "react"; import * as System from "~/components/system"; import * as Constants from "~/common/constants"; import { css } from "@emotion/react"; import SystemPage from "~/components/system/SystemPage"; import ViewSourceLink from "~/components/system/ViewSourceLink"; import CodeBlock from "~/components/system/CodeBlock"; export default class SystemPageCard3D extends React.Component { render() { return ( 3D Card

All of the colors the Filecoin Client uses.


Imports

Import Constants.

{`import { Constants } from 'slate-react-system';`}

Usage

Declare Constants.
{`{Constants.system.white}; {Constants.system.foreground}; {Constants.system.gray}; {Constants.system.border}; {Constants.system.darkGray}; {Constants.system.black}; {Constants.system.pitchBlack}; {Constants.system.brand}; {Constants.system.link}; {Constants.system.green}; {Constants.system.yellow}; {Constants.system.red};`}

Output

); } }