Dark Mode
It's very easy to switch Dark Mode in Falcon. You can easily convert to Dark Mode just following the steps bellow.
Step 1: Stylesheet
Open any of the Falconโs HTML file with your code editor, find the
theme.css
in the <head>
section and replace it with
theme-dark.css
<link href="../assets/css/theme-dark.css" rel="stylesheet">
If you are using RTL, use theme-dark-rtl.css
<link href="../assets/css/theme-dark-rtl.css" rel="stylesheet">
Step 2: JavaScript
From your project directory, open
js/theme/config.dark-mode.js
and set dark: true
to set
dark mode by default
const config = {
isDark: true
};