Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

Theming

We have a default theme of colors, styles, and fonts. These are defined utilizing CSS variables which you can override with your own brand styles. You can pick and choose what you override, you don't need to modify all the values.

To use CSS variables you'll need to add variables to your stylesheet or <style> tag in your HTML document. In the examples below we’ve used <style> tags. Add the style tag to the <head> of your document.

Code Block
languagehtml
// Open the style tag
<style>

    // select the widget element
    sm-widget {
        // List all your css variables
        --<css-variable-name>: <value>;
    }

// Close the style tag
</style>

Changing the font

There are two types of fonts you can use. Web , web-safe fonts and custom fonts. Web safe fonts are ones that are already included on most computers. They do not require any font installation. Custom fonts will require you to install the font. You can list multiple fonts, it will try and use the first one defined and fallback fall back to the others.

Usage

Code Block
languagehtml
<style>
    sm-widget {
       --sm-font-family-primary: 'Times, "Times New Roman", Georgia, serif';
    }
</style>

Palette

The widget is using multiple numeric color scales. A color scale is a group of color shades that listed from light to dark. Where 100 is the lightest color and 900 is the darkest. Our two main scales are primary and secondaryuses the following colors for control buttons, backgrounds, and content cards.

Code Block
languagehtml
<style>
    sm-widget {

       --sm-color-primarygray-100lightest: #e8ebef#eaeaea;
        --color-primary-200: #ccd4dd;
        --color-primary-300: #a5b5c7sm-color-gray-light: #d3d3d3;

       --color-primary-400: #6e8cad;
        -sm-color-primary-500lightest: #34669b#e8ebef;

       --color-primary-600: #215489;
        --sm-color-primary-700light: #234973#97b7d7;

       --color-primary-800: #223e5d;
        --sm-color-primary-900base: #1c2d41#1e5b98;


       --color-secondary-100: #dfedee;
        --color-secondary-200: #b6dadcsm-color-primary-dark: #234973;

       --color-secondary-300: #6bc0c7;
        -sm-color-secondary-400base: #2f979d#a3bef5;

       --color-secondary-500: #346b6f;
        -sm-color-secondarytertiary-600base: #31595b#ed5645;

       --color-secondary-700: #2d4c4f;
        --color-secondary-800: #284142;
        --color-secondary-900: #1f2f30;

        --color-grayscale-100: #eaeaea;
        --color-grayscale-200: #d3d3d3;
        --color-grayscale-300: #b2b2b2;
        --color-grayscale-400: #898989;
        --color-grayscale-500: #636363;
        --color-grayscale-600: #535252;
        --color-grayscale-700: #484847;
        --color-grayscale-800: #3c3c3c;
        --color-grayscale-900: #2c2c2b;

        --color-neutral-100: #e8ebee;
        --color-neutral-200: #cdd3da;
        --color-neutral-300: #a9b4c0;
        --color-neutral-400: #788ca1;
        --color-neutral-500: #52657a;
        --color-neutral-600: #455463;
        --color-neutral-700: #3d4955;
        --color-neutral-800: #343d47;
        --color-neutral-900: #272d33;

        --color-error-100: #f7e7e5;
        --color-error-200: #f4c9c2;
        --color-error-300: #f39d8f;
        --color-error-400: #ed5645;
        --color-error-500: sm-color-tertiary-dark: #bd2920;
        --color-error-600: #972c21;
        --color-error-700: #812a20;
        --color-error-800: #69271e;
        --color-error-900: #4a1f19;
    }
</style>
Image RemovedImage Removed
}
}

Image Added

Image Added

Box shadow

We've used four different shadow levels, sm, md, lg and xl.

Usage

Code Block
languagehtml
  <style>
      sm-widget {
        --sm-box-shadow-sm: 0px 0px2px 0px 1px20px rgba(0, 0, 0, 0.04), 0px 2px 8px12px rgba(0, 0, 0, 0.04), 0px 4px 16px rgba(0, 0, 0, 0.06);
        ---sm-box-shadow-md: 0px 2px 10px rgba(0, 0, 0, 0.04), 0px 6px 24px rgba(0, 0, 0, 0.1);
        ---sm-box-shadow-lg: 0px 4px 12px rgba(0, 0, 0, 0.06), 0px 12px 28px rgba(0, 0, 0, 0.12);
        ---sm-box-shadow-xl: 0px 0px 0px 1px rgba(0, 0, 0, 0.04), 0px 8px 16px rgba(0, 0, 0, 0.12),
    0px 16px 32px rgba(0, 0, 0, 0.12);
      }
    </style>

Debug

If you are curious about what style an element uses, you can inspect the element using your browser dev tools. For example, if you inspect the connect button, you'll see it has a class sm-text-primary-300. This means it uses the primary 300 shade for text. Another example is sm-bg-secondary-100, this means it's using the secondary 100 color for the background.

Contents

Table of Contents
minLevel1
maxLevel7