Skip to content

Commit

Permalink
Fix bugs
Browse files Browse the repository at this point in the history
- Adjust default theme to dark
- Fix UG link
  • Loading branch information
nqt230 committed Nov 7, 2022
1 parent 871299c commit 252231d
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
6 changes: 3 additions & 3 deletions docs/UserGuide.md
Original file line number Diff line number Diff line change
Expand Up @@ -159,9 +159,9 @@ The UI components description:

5. The screen should appear in a few seconds when the app first launches as shown in the figure below. Note how the app contains some sample data.

| ![Ui](images/darktheme.png) |
|:-----------------------------:|
| InterNUS GUI with sample data |
| ![Ui](images/darktheme.png) |
|:-----------------------------:|
| InterNUS GUI with sample data |

6. Type the command in the command box and press Enter to execute it. e.g. typing **`help`** and pressing Enter will open the help window.

Expand Down
2 changes: 1 addition & 1 deletion src/main/java/seedu/address/ui/MainWindow.java
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ public class MainWindow extends UiPart<Stage> {
public static final String EXTENSIONS = "Extensions.css";
private static final String FXML = "MainWindow.fxml";

private static String currentTheme = "LightTheme.css";
private static String currentTheme = "DarkTheme.css";

private final Logger logger = LogsCenter.getLogger(getClass());

Expand Down

0 comments on commit 252231d

Please sign in to comment.