Files
alfresco-ng2-components/docs/user-guide/theming.md
Wojciech Duda 622dcafbc4 AAE-38524 remove adf-core-theme (#11235)
* AAE-38524 Remove theming and unused stylesheets

* AAE-38524 Update the documentation

* AAE-38524 Change import forwarding

* AAE-38524 Rename globals mixin

* AAE-38524 Apply docs suggestions
2025-10-01 12:54:30 +01:00

5.1 KiB

Title, Added
Title Added
Theming an ADF app v2.0.0

Theming an ADF app

Theming is the process of adding your own color scheme to add style to an existing design.

The Material Design specification doesn't specify a single color scheme. Instead it uses the concept of color themes to allow designers some flexibility in their choice of colors.

A theme is a palette based around two main colors: the primary color (used widely throughout the app) and the accent color (used mainly for highlighting and calling out specific UI elements). Each of these colors is defined in a number of shades. For example, a blue/orange theme could define shades like the following:

Theme swatches

Each shade is related to a particular purpose or set of purposes within the app. So for example, the shade that works best for text isn't necessarily the same shade you would use for flat areas of color. Material Design provides a number of standard themes with shades that are carefully chosen for each purpose within the UI. The CSS files are designed so that the names are consistent between themes (so the same "purpose" will always have the same class name across CSS files). This makes it easy to switch themes simply by changing a few CSS definitions. Material Design also defines the relationship between the different shades, so you can calculate your own color values or, more straightforwardly, use an online palette design tool.

See the Material Design Style page for more information about color concepts.

Using Angular Material theming

ADF is based on Angular Material library, which offers solutions for theming your application with either:

If you already setup Angular Material theming in the application you use ADF in, there is no need for taking additional steps to theme ADF components - colors, typography and other parts of the theme will be taken from your setup.

Customizing deprecated theme variables

Currently we have an amount of custom variables around components to mange libraries look and feel consistently and globally.

While they are getting deprecated to be replaced with Angular Material system variables, for seamless integration with Angular Material's theming, you can provide values for those variables inside the :root element.

For example:

:root {
    --theme-primary-color: --mat-sys-primary;
    --theme-accent-color: --mat-sys-tertiary;
}

No new variables should be added to the project

Reference list of overridable variables

Default reusable class

.accent-color                // Accent color
.warn-color                  // Warn color
.primary-contrast-text-color // Default contrast color for primary color
.accent-contrast-text-color  // Default contrast color for accent color
.background-color            // Dialog background color
.primary-background-color    // Primary background color
.accent-background-color     // Default background color for accent

Styles

Avoid adding css variables with names related to components:

--my-component-nr-xxx-background-color: mat.get-color-from-palette($primary, 50),  // bad
--theme-primary-color-50: mat.get-color-from-palette($primary, 50)  // good

Avoid adding css variables with custom values, values should come from the theme:

--new-variable: yellow  // bad
--new-variable: mat.get-color-from-palette($primary, 50), // good 

When styling components use Angular Material system variables (colors, typography, elevation):

.my-class {
  color:darkgrey;  // bad
  color:var(--mat-sys-primary);  // good
  font-size:23px; // bad
  font:var(--mat-sys-body-small); // good
  background:yellow; // bad
  background:var(--my-component-nr-200-background-color);  // bad
  background:var(--theme-primary-color-50);  // good
}

When using library like Angular Material try to follow patterns from this library. It helps to style components built with this library (just apply theme instead of custom styling). For example when creating input:

// bad
<div class="my-custom-input">
  <div class="my-custom-label"></div>
  <mat-form-field>
    <input type="text">
  </mat-form-field>
  <div class="my-custom-error"></div>
</div>

// good
<mat-form-field>
  <mat-label></mat-label>
  <input type="text">
  <mat-hint></mat-hint>
  <mat-error></mat-error>
</mat-form-field>

Avoid customizing Angular Material's internal selectors:

// bad - targeting internal Angular Material selectors
.mat-mdc-form-field .mdc-text-field__input {
  color: red;
}

.mat-mdc-button .mdc-button__label {
  font-weight: bold;
}