@db-ux/db-theme
v5.4.2
Published
We provide db-theme for DB Apps in this package. Because of legal concern some files are encrypted. To decrypt them you need to go to [Marketingportal](https://marketingportal.extranet.deutschebahn.com/marketingportal/Design-Anwendungen/db-ux-design-syste
Readme
@db-ux/db-theme
We provide db-theme for DB Apps in this package. Because of legal concern some files are encrypted. To decrypt them you need to go to Marketingportal. Note: Deep links aren't working, you need to click the link again after login.
You will find two environment variables on the page:
ASSET_PASSWORDASSET_INIT_VECTOR
Before you install @db-ux/db-theme you need to create a .env file and add it to your .gitignore. Afterward, you add those two variables to the .env file.
ASSET_PASSWORD=db-theme
ASSET_INIT_VECTOR=db-themeThe postinstall script inside @db-ux/db-theme package will decrypt the files for you. If the decryption didn't work for you (e.g. because the Git lifecycle scripts, such as postinstall, have been deactivated, e.g. by the ignore-scripts setting), you will need to run the decryption scripts manually (see our "Contribution" / "Compare" documentation section for more information). Alternatively, you can include these node scripts in your lifecycle scripts.
Note: You can use
process.env.local or in CI/CD to pass the required environment variables topostinstall.
Install
Note: Read the disclaimer above :)
npm i @db-ux/db-themeUsage with @db-ux/core-components
Import
There are different ways to include the theme. Therefore, you need to import the correct .css file. There are multiple files depending on the bundler you use.
[TYPE] should be replaced with your bundler, if you don't use relative paths:
relative: No bundlerabsolute: No bundlerrollup:vite,rollupwebpack:webpack,nextjs
JS/TS
// main.[js|ts]
import "@db-ux/core-components/build/styles/[TYPE].css"; /* loads whitelabel */
import "@db-ux/db-theme/build/styles/[TYPE].css"; /* Overwrite whitelabel */CSS
/* main.css */
@import "@db-ux/core-components/build/styles/[TYPE].css"; /* loads whitelabel */
@import "@db-ux/db-theme/build/styles/[TYPE].css"; /* Overwrite whitelabel */Vite
You might need to add an additional resolve in vite.config.[js|ts]:
import * as path from "node:path";
export default defineConfig({
...
resolve: {
alias: {
"@db-ux": path.resolve("node_modules/@db-ux"),
},
},
});Advanced Settings
Instead of overwriting the whitelabel ([TYPE].css) you could also include each .css you need in your project:
// main.[js|ts]
/* load components */
import "@db-ux/core-components/build/styles/index.css";
/* load foundations (optional) */
import "@db-ux/core-foundations/build/styles/helpers/classes/all.css";
import "@db-ux/core-foundations/build/styles/density/classes/all.css";
import "@db-ux/core-foundations/build/styles/fonts/classes/all.css";
import "@db-ux/core-foundations/build/styles/colors/classes/all.css";
/* load assets */
import "@db-ux/db-theme-fonts/build/styles/[TYPE].css";
import "@db-ux/db-theme-icons/build/styles/[TYPE].css";
/* load theme */
import "@db-ux/db-theme/build/styles/index.css";Deutsche Bahn brand
As we'd like to perfectly support our users and customers on their digital journey, the usage of Deutsche Bahn brand and trademarks are bound of clear guidelines and restrictions even if being used with the code that we're providing with this product; Deutsche Bahn fully reserves all rights regarding the Deutsche Bahn brand, even though that we're providing the code of DB UX products free to use and release it under the Apache 2.0 license. Please have a look at our brand portal at https://marketingportal.extranet.deutschebahn.com/ for any further questions and whom to contact on any brand issues.
You aren't allowed to use this package or any of its contents (like e.g. design assets as well as protected characteristics and trademarks) for any usage outside of Deutsche Bahn websites and applications.
License
This project is licensed under special Apache-2.0, see the LICENCE file in this package.
