Codebase

Documentation

Responsive Layouts
Utilities
Components
Decoration Utilities

Color Utilities

Codebase’s default variable file contains six color swatches that are used for the Codebase user interface (UI) colors – i.e. primary, secondary, success, warning, danger, and default.

These colors are deployed on utility classes for:

  • backgrounds .bg-color-{colorname}
  • borders .b-color-{colorname}
  • text .t-color-{colorname}.

UI Color Utilities

These are the Codebase colors. (All colors can be changed in the SCSS default variables.)

-color-primary
-color-secondary
-color-success
-color-warning
-color-danger
-color-default

-alt versions of the UI colors are also available as utility classes. These are much paler than the regular UI colors in light mode – or, much darker in dark mode. Use the -alt colors for creating call-to-action panels, notifications, highlights, highlighted table rows, etc.

As with the alternative background color (color-background-alt, see below), these -alt UI colors have been chosen so that ordinary text is still readable over these colors, whether in the light theme or the dark theme. (Hyperlinks are still readable too.)

-color-primary-alt
-color-secondary-alt
-color-success-alt
-color-warning-alt
-color-danger-alt
-color-default-alt

Default UI colors

The gray color for buttons, labels and badges is also the -color-default utility color (see below). When creating buttons, labels and badges without assigning a UI color, that gray is the color you get. (There’s no need for btn-default, label-default or badge-default classes – in fact they do not exist!)

The color-default-alt utility classes for bg background-color, b border-color and t text-color is simply another name (an alias) for color-background-alt.

Both these grays are also part of the detail color utilities (see below).

Detail Color Utilities

Besides the UI colors, Codebase has a set of grays used for text, lines, etc. You can change these in the default variables.

-color-background
-color-background-alt
-color-fineline
-color-default
-color-text
-color-text-alt

Detail Color Usage

  1. In the light theme (default), these color detail utilities above are listed in their grayscale order. But in the dark theme, the fineline color needs to be slightly lighter than the UI default color.
  2. The color utility classes are all suffix named after the places where you would usually see and use them:
    • -color-background – self-explanatory 😀
    • -color-background-alt – panels, <code>, inactive (non-front) tab labels
    • -color-fineline – form element borders, table cell borders, <hr>, etc.
    • -color-default – the default background color of buttons, badges and labels (what you get if you don’t assign a UI background color.)
    • -color-text – base text color
    • -color-text-alt – headings color
  3. -color-background-alt has an alias: -color-default-alt – you can use either, interchangably.
  4. These colors are deliberately not named after their colors, so that they can all be themable. You can change them all in the default color SCSS variables to suit your own design, and you won’t need to go into your HTML and rename them every time you change particular colors. This is especially important if you have a light theme/dark theme combination, where you will be inverting some of the colors from light to dark.
  5. The detail colors don’t have to be on a “grayscale” in your own design. They could be anything that works for you, your clients, or your customers. Try a series of warm grays or cool grays.
  6. You are totally free supplement these colors by adding more utility classes that are in accordance with your brand colors, complimentary and/or accent colors – whatever you need.
  7. You can also adjust the five UI colors (primary, secondary, success, warning and danger) so that they don’t clash with your brand colors. For example, you don’t want your brand red and your UI danger red to be the same or similar – because that could send the wrong message about your brand!

Applying Color Utility Classes to Elements

Codebase has a full set of utility classes for background .bg-, border .b- and text .t- colors.

Backgrounds: .bg-color-{colorname}:

.bg-color-success

.bg-color-background-alt

Borders: .b-{colorname} (will only have an effect if your element already has a visible border):

.b-thick.b-color-danger

Note: the .b-color-{colorname} utilities will color the border on all sides (top, right, bottom, and left).

Text .t-color-{colorname}:

.t-color-warning Lorem ipsum dolor sit amet, vis in blandit singulis, an unum doming facilisi vim. Facete aliquam bonorum id quo, ex labore tincidunt mel, usu no quod liberavisse. Ex sea dolorum insolens assueverit, sed ut harum latine dignissim. Vis cibo vidit ea, eu duo debet platonem explicari, pro ex graece meliore. Illum graeci inciderint mei et, ei decore nostro vim.

Utility Class Prefix Color Swatch Name Suffix

Background color .bg

Text color .t

Border color .b

-color-primary
-color-secondary
-color-success
-color-warning
-color-danger
-color-primary-alt
-color-secondary-alt
-color-success-alt
-color-warning-alt
-color-danger-alt
-color-background
-color-background-alt (-color-default-alt)
-color-fineline
-color-default
-color-text
-color-text-alt

Color Utility Class Extras

.t-color-hyperlink:

For use in situations where you need to restore the color of a hyperlink. E.g. when using a heading utility that overrides the normal hyperlink color.

A hyperlink

<a class="h1 t-color-hyperlink" href="">A hyperlink</a>

.t-color-ui-text and .b-color-ui-text:

Seeing that sometimes you may want to use the UI colors (primary, secondary, success, warning, danger) as background colors for e.g. cards or panels, you will also want to control the text color on those elements. This is done by the special .t-color-ui-text utility. This will set text color to be the same as that of buttons, badges and labels – overriding the default light theme and dark theme text and border colors.

And if you place a button, label or badge into an element with a UI color background, you may also want to set the border in the same way – use .b-color-ui-text of the UI element to be the same UI text color.

Example:

This text is colored using .t-color-ui-text. The horizontal rule and the button below have their border-color set using .b-color-ui-text.