Created
April 24, 2023 19:30
-
-
Save just-boris/6835d6794341cd7080cd4044bb8240c5 to your computer and use it in GitHub Desktop.
Cloudscape theming demo
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
const { join } = require("path"); | |
const { | |
buildThemedComponents, | |
} = require("@cloudscape-design/components-themeable/theming"); | |
/** @type import('@cloudscape-design/components-themeable/theming').Theme */ | |
const theme = { | |
tokens: { | |
fontFamilyBase: "'Helvetica Neue', Roboto, Arial, sans-serif", | |
}, | |
}; | |
buildThemedComponents({ theme, outputDir: join(__dirname, "./themed") }); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment