ForgeRock Developer Experience

Theme the widget

The ForgeRock Login Widget provides a default theme with both light and dark modes.

law dark theme example en
Figure 1. Example of the modal component in dark mode

You can alter these themes by using the Tailwind configuration file.

Switch between light and dark themes

To switch to the dark mode, you can manually add tw_dark to the <body> element:

<body class="tw_dark"></body>

The ForgeRock Login Widget defaults to the light mode if the class is not present.

You can programmatically apply the class if required:

const prefersDarkTheme = window.matchMedia('(prefers-color-scheme: dark)').matches;
if (prefersDarkTheme) {
    document.body.classList.add('tw_dark');
}

Customize the theme

To reconfigure the theme to use different colors, fonts, or sizing you can provide new values to the Tailwind configuration file and rebuild the ForgeRock Login Widget, as follows:

  1. Download the ForgeRock Web Login Framework from the GitHub repository:

    git clone https://github.com/ForgeRock/forgerock-web-login-framework.git

  2. In a terminal window, navigate to the root of the ForgeRock Web Login Framework:

    cd forgerock-web-login-framework

  3. Run npm to download and install the required packages and modules:

    npm install

  4. Run the development script:

    npm run dev

  5. Run Storybook:

    npm run storybook

    Make a note of the URLs to the Storybook UI listed in the terminal output:

    law custom theme storybook url en
    Figure 2. URLs to the Storybook UI
  6. Open the tailwind.config.cjs file in the root of the ForgeRock Web Login Framework and adjust your theme by adding them under the extend property:

    // tailwind.config.cjs
    module.exports = {
      content: ['./src/**/*.{html,js,svelte,ts}', './.storybook/preview-head.html'],
      darkMode: 'class',
      presets: [require('./themes/default/config.cjs')],
      theme: {
        extend: {
          // Add your customizations here
          colors: {
            body: {
              light: 'darkblue',
            },
            primary: {
              dark: 'darkorange',
            },
            background: {
              light: "gainsboro",
            },
          },
          fontFamily: {
            sans: ['Impact'],
          },
        },
      },
    };
  7. Navigate to the Storybook UI provided in the terminal output earlier to view your changes:

    law custom theme storybook en
    Figure 3. Customized registration modal in Storybook

    Changes you make to the tailwind.config.cjs file are automatically reflected in the Storybook UI when you save them to disk.

Recommendations

Anything configurable in Tailwind is also configurable in the theme. The custom properties the default theme uses are stored in the /themes/default/tokens.cjs file.

We recommend you do not directly modify these default theme files. Only modify the root tailwind.config.cjs.

Supported customization

Using the methods on this page, you can customize:

  • Colors

  • Fonts

  • Type sizes

  • Spacing

  • Breakpoints

Copyright © 2010-2024 ForgeRock, all rights reserved.