Skip to content

Commit

Permalink
feat: add light theme support (#1)
Browse files Browse the repository at this point in the history
  • Loading branch information
ivodolenc authored Apr 27, 2023
1 parent 6d037d4 commit 754957e
Show file tree
Hide file tree
Showing 11 changed files with 16 additions and 1 deletion.
1 change: 1 addition & 0 deletions src/public/icons/config_light.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
1 change: 1 addition & 0 deletions src/public/icons/file_light.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
1 change: 1 addition & 0 deletions src/public/icons/folder-open_light.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
1 change: 1 addition & 0 deletions src/public/icons/folder_light.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
1 change: 1 addition & 0 deletions src/public/icons/font_light.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
1 change: 1 addition & 0 deletions src/public/icons/hidden_light.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
1 change: 1 addition & 0 deletions src/public/icons/html_light.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
1 change: 1 addition & 0 deletions src/public/icons/image_light.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
1 change: 1 addition & 0 deletions src/public/icons/json_light.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
1 change: 1 addition & 0 deletions src/public/icons/style_light.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
7 changes: 6 additions & 1 deletion src/theme/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,12 @@ export const theme = JSON.stringify(
iconDefinitions,
...transformData(defaultNames, 'dark'),
fileExtensions: transformData(fileExtensions, 'dark'),
fileNames: transformData(fileNames, 'dark')
fileNames: transformData(fileNames, 'dark'),
light: {
...transformData(defaultNames, 'light'),
fileExtensions: transformData(fileExtensions, 'light'),
fileNames: transformData(fileNames, 'light')
}
},
null,
2
Expand Down

0 comments on commit 754957e

Please sign in to comment.