Skip to main content

Theme style sheets

While component style sheets are used to style elements in isolation, a theme style sheet is used to style the document (using a container), while also providing global at-rules like font faces or keyframes.

Use the createThemeStyles() method to create a theme style sheet. This style sheet can then be passed on a theme-by-theme basis during registration with registerTheme() or registerDefaultTheme(). Feel free to add a style sheet to one or many themes.

setup.ts
import { createThemeStyles, registerTheme } from '@aesthetic/<integration>';
import dayTheme from './system/themes/day';
import nightTheme from './system/themes/night';
const styleSheet = createThemeStyles(() => ({
'@font-face': {
'Open Sans': {
fontStyle: 'normal',
fontWeight: 'normal',
srcPaths: ['fonts/OpenSans.woff2', 'fonts/OpenSans.ttf'],
},
},
}));
registerTheme('day', dayTheme, styleSheet);
registerTheme('night', nightTheme, styleSheet);

Styling the document#

Root containers#

A container is used to provide "global" styles (fonts, colors, etc) to a specific portion of a component/element tree by acting as the root. Styles are scoped to a class name to avoid collisions, so they're not truely global, but are applied in 1 of 2 ways:

  • Document wide through the <body> element. Automatically applied when activating a theme.
  • Per element through a <div> element. Manually applied when using nested/contextual themes.

Container styles can be defined with the @root at-rule, which accepts standard style objects (as if you're styling a component). It pairs well with the root mixin, which provides fluid typography.

const styleSheet = createThemeStyles((css) => ({
'@root': css.mixin('root', {
backgroundColor: css.var('palette-neutral-bg-base'),
color: css.var('palette-neutral-fg-base'),
height: '100%',
'@selectors': {
a: {
color: css.var('palette-brand-fg-base'),
},
},
}),
}));

The html, :root, or * global styles cannot be defined with @root. Those category of globals should be handled outside of this system.

Font faces#

Defines a font face that can be referenced with the fontFamily property. The at-rule requires an object, with the font family name as the key, and the font face(s) as the value. Each font face supports a srcPaths array.

To support multiple font variations, like bold and italics, pass an array of font faces.

const styleSheet = createThemeStyles(() => ({
'@font-face': {
'Open Sans': {
fontStyle: 'normal',
fontWeight: 'normal',
srcPaths: ['fonts/OpenSans.woff2', 'fonts/OpenSans.ttf'],
},
Roboto: {
// ....
},
},
}));

Font faces defined within a theme style sheet can be accessed within a component style sheet by referencing their name, like so.

const styleSheet = createComponentStyles((css) => ({
element: {
// Explicitly
fontFamily: '"Open Sans", Roboto, sans-serif',
// Configured in the design system (preferred)
fontFamily: css.var('typography-font-text'),
},
}));

Do note that font family names must be globally unique to avoid collisions.

Keyframes#

Defines a keyframes animation that can be referenced with the animationName property. The at-rule requires an object, with the animation name as the key, and the keyframes as the value. Supports both range (from/to) and percentage based sequences.

const styleSheet = createThemeStyles(() => ({
'@keyframes': {
// Range
fade: {
from: { opacity: 0 },
to: { opacity: 1 },
},
// Percentage
slide: {
'0%': { left: '0%' },
'50%': { left: '75%' },
'100%': { left: '100%' },
},
},
}));

Keyframes defined within a theme style sheet can be accessed within a component style sheet by referencing their name, like so.

const styleSheet = createComponentStyles((css) => ({
element: {
animationName: 'fade 200ms, slide 3s',
},
}));

Do note that keyframe names must be globally unique to avoid collisions.

Imports#

Defines one or many CSS files to import, relative to the document root. An import can either be a proper CSS formatted string (including quotes), or an object of path (required), query, and url.

const styleSheet = createThemeStyles(() => ({
'@import': [
// String
'url("css/reset.css") screen',
// Object
{
path: 'css/reset.css',
media: 'screen',
url: true,
},
],
}));

If the url property is not defined, or is false, the import path will not be wrapped with url().

Variables#

Defines and formats custom CSS variables to be used at the :root. These are additional variables along side the ones provided by Aesthetic's design system.

const styleSheet = createThemeStyles(() => ({
'@variables': {
backgroundColor: 'black', // --background-color
fontSize: '16px', // --font-size
},
});