Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add New Themes: Gruvbox, Solarized, and Mystic #93

Closed
wants to merge 23 commits into from
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
23 commits
Select commit Hold shift + click to select a range
ec851fd
Feat: update Tokyonight theme to Tokyonight Moon and add Tokyonight D…
echoriiku Jul 27, 2024
7136e73
fix authors
echoriiku Jul 28, 2024
c3c8498
Merge remote-tracking branch 'upstream/main'
echoriiku Jul 28, 2024
7702c3c
feat: add gruvbox light and dark theme
echoriiku Jul 28, 2024
bbbaaf9
typo
echoriiku Jul 28, 2024
02656aa
update versions
echoriiku Jul 28, 2024
2611a93
lint
echoriiku Jul 28, 2024
7a933d4
description update
echoriiku Jul 28, 2024
c93d2b2
add solarized light and dark variants
echoriiku Jul 28, 2024
d6b8b81
Add Mystic Night and Mystic Dawn themes
echoriiku Jul 28, 2024
bb00ce8
used the theme builder to correct the unintended formatting changes
echoriiku Jul 29, 2024
78e1844
updated code-block background color
echoriiku Jul 29, 2024
ca87e35
changed editor background color
echoriiku Jul 29, 2024
92a6105
fix missing comma again
echoriiku Jul 29, 2024
db68ad2
Merge branch 'main' into add-tokyonight-theme
thecodrr Jul 30, 2024
99d7c9b
Merge branch 'main' into add-tokyonight-theme
thecodrr Jul 30, 2024
4c443ab
Merge branch 'main' into add-tokyonight-theme
thecodrr Jul 30, 2024
11da07b
Merge branch 'main' into add-tokyonight-theme
thecodrr Jul 30, 2024
64d14af
revert ID changes
echoriiku Jul 30, 2024
e088444
Merge branch 'main' into add-tokyonight-theme
thecodrr Jul 30, 2024
89f5ee9
Merge branch 'streetwriters:main' into add-tokyonight-theme
echoriiku Jul 30, 2024
1942fcd
fixed the undo/redo button visibility on mobile
echoriiku Jul 30, 2024
d4820a9
Merge branch 'add-tokyonight-theme'
echoriiku Jul 30, 2024
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions themes/gruvbox-dark/v1/code-block.css

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

145 changes: 145 additions & 0 deletions themes/gruvbox-dark/v1/theme.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,145 @@
{
"$schema": "https://raw.githubusercontent.com/streetwriters/notesnook-themes/main/schemas/v1.schema.json",
"name": "Gruvbox Dark",
"id": "gruvbox-dark",
"version": 1,
"license": "GPL-3.0-or-later",
"homepage": "https://notesnook.com",
"description": "Gruvbox Dark theme",
"colorScheme": "dark",
"compatibilityVersion": 1,
"authors": [
{
"name": "riiku",
"url": "https://tech.lgbt/@riiku"
}
],
"scopes": {
"base": {
"primary": {
"accent": "#d65d0e",
"paragraph": "#ebdbb2",
"background": "#282828",
"border": "#282828",
"heading": "#ebdbb2",
"icon": "#d65d0e",
"separator": "#3c3836",
"placeholder": "#928374",
"hover": "#3c3836",
"accentForeground": "#282828",
"backdrop": "#28282899"
},
"secondary": {
"accent": "#d65d0e",
"paragraph": "#ebdbb2",
"background": "#3c3836",
"border": "#928374",
"heading": "#ebdbb2",
"icon": "#ebdbb2",
"separator": "#928374",
"placeholder": "#928374",
"hover": "#3c3836",
"accentForeground": "#282828",
"backdrop": "#28282899"
},
"disabled": {
"accent": "#d65d0e",
"paragraph": "#ebdbb2",
"background": "#928374",
"border": "#928374",
"heading": "#ebdbb2",
"icon": "#ebdbb2",
"separator": "#928374",
"placeholder": "#ebdbb2",
"hover": "#928374",
"accentForeground": "#282828",
"backdrop": "#28282899"
},
"selected": {
"accent": "#d65d0e",
"paragraph": "#ebdbb2",
"background": "#504945",
"border": "#d65d0e",
"heading": "#ebdbb2",
"icon": "#d65d0e",
"separator": "#928374",
"placeholder": "#928374",
"hover": "#3c3836",
"accentForeground": "#282828",
"backdrop": "#28282899"
},
"error": {
"accent": "#fb4934",
"paragraph": "#fb4934",
"background": "#3c3836",
"border": "#928374",
"heading": "#fb4934",
"icon": "#fb4934",
"separator": "#928374",
"placeholder": "#928374",
"hover": "#928374",
"accentForeground": "#282828",
"backdrop": "#28282899"
},
"success": {
"accent": "#b8bb26",
"paragraph": "#b8bb26",
"background": "#3c3836",
"border": "#928374",
"heading": "#b8bb26",
"icon": "#b8bb26",
"separator": "#928374",
"placeholder": "#928374",
"hover": "#928374",
"accentForeground": "#282828",
"backdrop": "#28282899"
}
},
"statusBar": {
"primary": {
"paragraph": "#ebdbb2",
"background": "#282828",
"separator": "#282828"
}
},
"list": {
"primary": {
"paragraph": "#ebdbb2",
"background": "#3c3836",
"hover": "#282828"
},
"secondary": {
"paragraph": "#ebdbb2"
}
},
"editor": {
"primary": {
"background": "#282828",
"border": "#928374"
},
"secondary": {
"paragraph": "#928374",
"border": "#282828"
}
},
"editorToolbar": {
"primary": {
"background": "#3c3836",
"hover": "#92837433"
},
"secondary": {
"background": "#92837433"
}
},
"navigationMenu": {
"primary": {
"background": "#282828"
}
},
"sheet": {
"selected": {
"paragraph": "#b8bb26"
}
}
}
}
1 change: 1 addition & 0 deletions themes/gruvbox-light/v1/code-block.css

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

145 changes: 145 additions & 0 deletions themes/gruvbox-light/v1/theme.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,145 @@
{
"$schema": "https://raw.githubusercontent.com/streetwriters/notesnook-themes/main/schemas/v1.schema.json",
"name": "Gruvbox Light",
"id": "gruvbox-light",
"version": 1,
"license": "GPL-3.0-or-later",
"homepage": "https://notesnook.com",
"description": "Gruvbox Light theme",
"colorScheme": "light",
"compatibilityVersion": 1,
"authors": [
{
"name": "riiku",
"url": "https://tech.lgbt/@riiku"
}
],
"scopes": {
"base": {
"primary": {
"accent": "#d65d0e",
"paragraph": "#3c3836",
"background": "#fbf1c7",
"border": "#fbf1c7",
"heading": "#3c3836",
"icon": "#d65d0e",
"separator": "#ebdbb2",
"placeholder": "#a89984",
"hover": "#f2e5bc",
"accentForeground": "#fbf1c7",
"backdrop": "#fbf1c799"
},
"secondary": {
"accent": "#d65d0e",
"paragraph": "#3c3836",
"background": "#ebdbb2",
"border": "#a89984",
"heading": "#3c3836",
"icon": "#3c3836",
"separator": "#a89984",
"placeholder": "#a89984",
"hover": "#f2e5bc",
"accentForeground": "#fbf1c7",
"backdrop": "#fbf1c799"
},
"disabled": {
"accent": "#d65d0e",
"paragraph": "#3c3836",
"background": "#a89984",
"border": "#a89984",
"heading": "#3c3836",
"icon": "#3c3836",
"separator": "#a89984",
"placeholder": "#3c3836",
"hover": "#f2e5bc",
"accentForeground": "#fbf1c7",
"backdrop": "#fbf1c799"
},
"selected": {
"accent": "#d65d0e",
"paragraph": "#3c3836",
"background": "#d5c4a1",
"border": "#d65d0e",
"heading": "#3c3836",
"icon": "#d65d0e",
"separator": "#a89984",
"placeholder": "#a89984",
"hover": "#f2e5bc",
"accentForeground": "#fbf1c7",
"backdrop": "#fbf1c799"
},
"error": {
"accent": "#cc241d",
"paragraph": "#cc241d",
"background": "#ebdbb2",
"border": "#a89984",
"heading": "#cc241d",
"icon": "#cc241d",
"separator": "#a89984",
"placeholder": "#a89984",
"hover": "#f2e5bc",
"accentForeground": "#fbf1c7",
"backdrop": "#fbf1c799"
},
"success": {
"accent": "#98971a",
"paragraph": "#98971a",
"background": "#ebdbb2",
"border": "#a89984",
"heading": "#98971a",
"icon": "#98971a",
"separator": "#a89984",
"placeholder": "#a89984",
"hover": "#f2e5bc",
"accentForeground": "#fbf1c7",
"backdrop": "#fbf1c799"
}
},
"statusBar": {
"primary": {
"paragraph": "#3c3836",
"background": "#f2e5bc",
"separator": "#f2e5bc"
}
},
"list": {
"primary": {
"paragraph": "#3c3836",
"background": "#ebdbb2",
"hover": "#f2e5bc"
},
"secondary": {
"paragraph": "#3c3836"
}
},
"editor": {
"primary": {
"background": "#f2e5bc",
"border": "#a89984"
},
"secondary": {
"paragraph": "#a89984",
"border": "#fbf1c7"
}
},
"editorToolbar": {
"primary": {
"background": "#ebdbb2",
"hover": "#a8998433"
},
"secondary": {
"background": "#a8998433"
}
},
"navigationMenu": {
"primary": {
"background": "#fbf1c7"
}
},
"sheet": {
"selected": {
"paragraph": "#98971a"
}
}
}
}
1 change: 1 addition & 0 deletions themes/mystic-dawn/v1/code-block.css

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Loading
Loading