├── .gitattributes ├── .gitignore ├── LICENSE ├── bin ├── Apple_Spark.json ├── Blue Heart.json ├── Chalk and Coal.json ├── Colorful Grey dark heart.json ├── Colorful Grey heart.json ├── Dark Blue.json ├── Dark Purple.json ├── Dark_NP.json ├── Freestraction Simplified Dark.json ├── Freestraction Simplified Light.json ├── Gryffindor MacOS.json ├── Gryffindor iOS.json ├── Light_NP.json ├── NPEdit.json ├── Nandor.json ├── Nord.json ├── Nord_Polar_Day.json ├── Nord_Polar_Night.json ├── Noteworthy.json ├── Noteworthy_Nord.json ├── Noteworthy_Nord_Dark.json ├── Outrun.json ├── Panda Dark.json ├── Panda.json ├── Purple Heart.json ├── Rose Pine Dawn.json ├── Rose Pine.json ├── Scripture Night.json ├── Scripture.json ├── Soft Blue.json ├── Soft Contrast Dark.json ├── Soft Contrast Light.json ├── Squid Ink Light.json ├── Squid Ink.json ├── The Thymes.json ├── Things Dark.json ├── Things.json ├── Tomorrow Night.json ├── Toothpaste Pro.json ├── WikiWords.json ├── atom-theme.json ├── danny_wyatt.json ├── day-one-dark.json ├── day-one-light.json ├── fangbleach.json ├── fangpaste.json ├── rB One.json └── subdued.json ├── contributing.md ├── img ├── NPEdit.png ├── applespark.png ├── atom.png ├── blueheart.png ├── chalkandcoal.png ├── colorfulgreydarkheart.png ├── colorfulgreyheart.png ├── danny_wyatt.png ├── darkblue.png ├── darknp.png ├── darkpurple.png ├── dayone.png ├── dayonedark.png ├── fangbleach.png ├── fangpaste.png ├── freestraction.png ├── freestractiondark.png ├── gryffindorios.png ├── gryffindormacos.png ├── lightnp.png ├── nandor.png ├── nord.png ├── nordpolarday.png ├── nordpolarnight.png ├── noteworthy-nord-dark.png ├── noteworthy-nord.png ├── noteworthy.png ├── outrun.png ├── panda.png ├── pandadark.png ├── purpleheart.png ├── rbone.png ├── rose-pine-dawn.png ├── rose-pine.png ├── scripture.png ├── scripturedark.png ├── softblue.png ├── softcontrastdark.png ├── softcontrastlight.png ├── squidink.png ├── squidinklight.png ├── subdued.png ├── thethymes.png ├── things.png ├── thingsdark.png ├── tomorrownight.png ├── toothpastepro.png └── wikiwords.png ├── readme.md ├── src ├── Tomorrow Night.json ├── toothbleach.json └── toothpaste.json └── theme test note.md /.gitattributes: -------------------------------------------------------------------------------- 1 | # Auto detect text files and perform LF normalization 2 | * text=auto 3 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | 2 | .DS_Store 3 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- 1 | MIT License 2 | 3 | Copyright (c) 2021 Brad Rokosz 4 | 5 | Permission is hereby granted, free of charge, to any person obtaining a copy 6 | of this software and associated documentation files (the "Software"), to deal 7 | in the Software without restriction, including without limitation the rights 8 | to use, copy, modify, merge, publish, distribute, sublicense, and/or sell 9 | copies of the Software, and to permit persons to whom the Software is 10 | furnished to do so, subject to the following conditions: 11 | 12 | The above copyright notice and this permission notice shall be included in all 13 | copies or substantial portions of the Software. 14 | 15 | THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR 16 | IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, 17 | FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE 18 | AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER 19 | LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, 20 | OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE 21 | SOFTWARE. 22 | -------------------------------------------------------------------------------- /bin/Blue Heart.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "Blue Heart", 3 | "style": "Light", 4 | "author": { 5 | "name": "dntme17", 6 | "email": "dntme17@protonmail.com" 7 | }, 8 | 9 | "editor": { 10 | "backgroundColor": "#fafafc", 11 | "altBackgroundColor": "#f9fafb", 12 | "tintColor": "#346db7", 13 | "tintColor2": "#febf45", 14 | "textColor": "#121417", 15 | "toolbarBackgroundColor": "#f7fbff", 16 | "toolbarIconColor": "#222E33", 17 | "menuItemColor": "#222E33", 18 | "shouldOverwriteFont": true 19 | }, 20 | 21 | "styles": { 22 | 23 | "body": { 24 | "font": "AvenirNext-Regular", 25 | "size": 16, 26 | "color": "#121417" 27 | }, 28 | 29 | "title1": { 30 | "color": "#25282c", 31 | "size": 28, 32 | }, 33 | 34 | "title2": { 35 | "color": "#25282c", 36 | "size": 24 37 | }, 38 | 39 | "title3": { 40 | "regex": "^\\h*(### )(.*)", 41 | "color": "#25282c", 42 | "size": 20, 43 | }, 44 | 45 | "title4": { 46 | "regex": "^\\h*(####+ )(.*)", 47 | "matchPosition": 2, 48 | "color": "#B425282c", 49 | "size": 17, 50 | "isRevealOnCursorRange": true, 51 | }, 52 | 53 | "title-mark1-custom": { 54 | "regex": "^\\h*(# )(.*)", 55 | "matchPosition": 1, 56 | "color": "#3A000000", 57 | "size": 28, 58 | "font": "AvenirNext-DemiBold", 59 | }, 60 | 61 | "title-mark2-custom": { 62 | "regex": "^\\h*(## )(.*)", 63 | "matchPosition": 1, 64 | "color": "#3A000000", 65 | "size": 24, 66 | "font": "AvenirNext-DemiBold" 67 | }, 68 | 69 | "title-mark3-custom": { 70 | "regex": "^\\h*(### )(.*)", 71 | "matchPosition": 1, 72 | "color": "#3A000000", 73 | "size": 20, 74 | "font": "AvenirNext-DemiBold", 75 | "isHiddenWithoutCursor": false, 76 | "isRevealOnCursorRange": false, 77 | }, 78 | 79 | "title-mark4-custom": { 80 | "regex": "^\\h*(####+ )(.*)", 81 | "matchPosition": 1, 82 | "color": "#3A000000", 83 | "size": 17, 84 | "font": "AvenirNext-DemiBold", 85 | }, 86 | 87 | "bold": { 88 | "type": "bold", 89 | }, 90 | 91 | "bold-left-mark-custom": { 92 | "regex": "(^|[\\W_])(?:(?!\\1)|(?=^))((\\*|_)\\3)(?=\\S)(.*?\\S)(\\3\\3)(?!\\2)(?=[\\W_]|$)", 93 | "matchPosition": 2, 94 | "color": "#3A000000", 95 | }, 96 | 97 | "bold-right-mark-custom": { 98 | "regex": "(^|[\\W_])(?:(?!\\1)|(?=^))(\\*|_)\\2(?=\\S)(.*?\\S)(\\2\\2)(?!\\2)(?=[\\W_]|$)", 99 | "matchPosition": 4, 100 | "color": "#3A000000", 101 | }, 102 | 103 | "italic": { 104 | "type": "italic" 105 | }, 106 | 107 | "italic-left-mark": { 108 | "regex": "(^|[\\W_])(?:(?!\\1)|(?=^))(\\*|_)(?=\\S)((?:(?!\\2).)*?\\S)(\\2)(?!\\2)(?=[\\W_]|$)", 109 | "matchPosition": 2, 110 | "color": "#3A000000", 111 | }, 112 | 113 | "italic-right-mark": { 114 | "regex": "(^|[\\W_])(?:(?!\\1)|(?=^))(\\*|_)(?=\\S)((?:(?!\\2).)*?\\S)(\\2)(?!\\2)(?=[\\W_]|$)", 115 | "matchPosition": 4, 116 | "color": "#3A000000", 117 | }, 118 | 119 | "boldItalic": { 120 | "type": "bolditalic" 121 | }, 122 | 123 | "boldItalic-left-mark": { 124 | "color": "#3A000000", 125 | }, 126 | 127 | "boldItalic-right-mark": { 128 | "color": "#3A000000", 129 | }, 130 | 131 | "code": { 132 | "font": "Menlo-Regular", 133 | "color": "#f89200", 134 | "backgroundColor": "#f7f7f7", 135 | "size": 15 136 | }, 137 | 138 | "code-left-backtick-custom": { 139 | "regex": "(`)([^`]{1,})(`)", 140 | "matchPosition": 1, 141 | "type": "bold", 142 | "color": "#660091f8", 143 | "font": "Menlo-Regular", 144 | }, 145 | 146 | "code-right-backtick-custom": { 147 | "regex": "(`)([^`]{1,})(`)", 148 | "matchPosition": 3, 149 | "type": "bold", 150 | "color": "#660091f8", 151 | "font": "Menlo-Regular", 152 | }, 153 | 154 | "checked": { 155 | "regex": "(^\\h*[\\*\\-]{1} |^\\h*[0-9]+[\\.\\)] )(\\[x\\] )(.*)", 156 | "matchPosition": 0, 157 | "color": "#7583868b", 158 | "headIndent": 33 159 | }, 160 | 161 | "checked-canceled": { 162 | "regex": "(^\\h*[\\*\\-]{1} |^\\h*[0-9]+[\\.\\)] )(\\[\\-\\] )(.*)", 163 | "matchPosition": 0, 164 | "color": "#c0c3c6", 165 | "headIndent": 33, 166 | "strikethroughStyle": 1 167 | }, 168 | 169 | "checked-scheduled": { 170 | "regex": "(^\\h*[\\*\\-]{1} |^\\h*[0-9]+[\\.\\)] )(\\[\\>\\] )(.*)", 171 | "matchPosition": 0, 172 | "color": "#501379e1", 173 | "headIndent": 33 174 | }, 175 | 176 | "todo": { 177 | "font": "noteplanstate", 178 | "color": "#febf45", 179 | "headIndent": 33, 180 | "size": 16 181 | }, 182 | 183 | "checked-todo-characters": { 184 | "font": "noteplanstate", 185 | "headIndent": 33, 186 | "size": 16 187 | }, 188 | 189 | "special-char": { 190 | "font": "Menlo-Regular" 191 | }, 192 | 193 | "tabbed": { 194 | "headIndent": 43 195 | }, 196 | 197 | "quote-mark": { 198 | "color": "#f89200", 199 | "font": "noteplanstate", 200 | "headIndent": 33, 201 | "size": 16 202 | }, 203 | 204 | "quote-content": { 205 | "color": "#333333", 206 | "type": "italic", 207 | "headIndent": 33 208 | }, 209 | 210 | "link": {}, 211 | 212 | "schedule-to-date-link": {}, 213 | 214 | "schedule-from-date-link": {}, 215 | 216 | "done-date": {}, 217 | 218 | "note-title-link": {}, 219 | 220 | "hashtag": {}, 221 | 222 | "attag": {}, 223 | 224 | "phonenumber": {}, 225 | 226 | "highlighted": { 227 | "regex": "(::)([^:]{1,})(::)", 228 | "matchPosition": 0, 229 | "backgroundColor": "#caff94" 230 | }, 231 | 232 | "strikethrough": { 233 | "regex": "(~~)([^:]{1,})(~~)", 234 | "matchPosition": 2, 235 | "strikethroughStyle": 1, 236 | "strikethroughColor": "#7f7f7f", 237 | "color": "#7f7f7f", 238 | }, 239 | 240 | "hot": { 241 | "regex": "(^|\\v)\\h*(\\*|-)\\h*\\[ \\]\\h+(.*?#hot.*)($|\\v)", 242 | "matchPosition": 3, 243 | "backgroundColor": "#eafecc66", 244 | }, 245 | } 246 | } -------------------------------------------------------------------------------- /bin/Chalk and Coal.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "Chalk and Coal", 3 | "style": "Light", 4 | "author": { 5 | "name": "MacBoeck", 6 | "email": "macboeck@icloud.com" 7 | }, 8 | 9 | "editor": { 10 | "backgroundColor": "#adadad", 11 | "altBackgroundColor": "#bdbdbd", 12 | "tintColor": "#ffeeee", 13 | "tintColor2": "#000000", 14 | "textColor":"#555555", 15 | "toolbarBackgroundColor": "#898989", 16 | "toolbarIconColor": "#171089", 17 | "menuItemColor": "#171089", 18 | "shouldOverwriteFont": false 19 | }, 20 | 21 | "styles": { 22 | 23 | "body": { 24 | "font": "VulfMono-Regular", 25 | "size": 16, 26 | "color": "#110000", 27 | }, 28 | 29 | "title1": { 30 | "font": "VulfMono-Black", 31 | "color": "#000000", 32 | "backgroundColor": "#40000000", 33 | "size": 28 34 | }, 35 | 36 | "title2": { 37 | "font": "VulfMono-Black", 38 | "color": "#222222", 39 | "backgroundColor": "#30000000", 40 | "size": 24 41 | }, 42 | 43 | "title3": { 44 | "font": "VulfMono-Black", 45 | "backgroundColor": "#20000000", 46 | "color": "#444444", 47 | "size": 20 48 | }, 49 | 50 | "title-mark1": { 51 | "color": "#cc0000", 52 | "size": 28, 53 | "font": "VulfMono-Bold" 54 | }, 55 | 56 | "title-mark2": { 57 | "color": "#cc0000", 58 | "size": 24, 59 | "font": "VulfMono-Bold" 60 | }, 61 | 62 | "title-mark3": { 63 | "color": "#cc0000", 64 | "size": 20, 65 | "font": "VulfMono-Bold", 66 | }, 67 | 68 | "bold": { 69 | "font": "VulfMono-Bold", 70 | "color": "#000011", 71 | }, 72 | 73 | "bold-left-mark": { 74 | "color": "#cc0000" 75 | }, 76 | 77 | "bold-right-mark": { 78 | "color": "#cc0000" 79 | }, 80 | 81 | "italic": { 82 | "font": "VulfMono-Italic", 83 | "color": "#000022", 84 | }, 85 | 86 | "italic-left-mark": { 87 | "color": "#cc0000" 88 | }, 89 | 90 | "italic-right-mark": { 91 | "color": "#cc0000" 92 | }, 93 | 94 | "boldItalic": { 95 | "font": "VulfMono-BoldItalic", 96 | "color": "#ffffff", 97 | }, 98 | 99 | "boldItalic-left-mark": { 100 | "color": "#cc0000" 101 | }, 102 | 103 | "boldItalic-right-mark": { 104 | "color": "#cc0000" 105 | }, 106 | 107 | "code": { 108 | "font": "FiraCode-Regular", 109 | "color": "#464748", 110 | "backgroundColor": "#10002200", 111 | "size": 15 112 | }, 113 | 114 | "code-left-backtick": { 115 | "color": "#cc0000" 116 | }, 117 | 118 | "code-right-backtick": { 119 | "color": "#cc0000" 120 | }, 121 | 122 | "checked": { 123 | "regex": "(^\\h*[\\*\\-]{1} |^\\h*[0-9]+[\\.\\)] )(\\[x\\] )(.*)", 124 | "matchPosition": 0, 125 | "color": "#bdbdbd", 126 | "headIndent": 33 127 | }, 128 | 129 | "checked-canceled": { 130 | "regex": "(^\\h*[\\*\\-]{1} |^\\h*[0-9]+[\\.\\)] )(\\[\\-\\] )(.*)", 131 | "matchPosition": 0, 132 | "color": "#cdcdcd", 133 | "headIndent": 33, 134 | "strikethroughStyle": 1 135 | }, 136 | 137 | "checked-scheduled": { 138 | "regex": "(^\\h*[\\*\\-]{1} |^\\h*[0-9]+[\\.\\)] )(\\[\\>\\] )(.*)", 139 | "matchPosition": 0, 140 | "color": "#dddddd", 141 | "headIndent": 33 142 | }, 143 | 144 | "todo": { 145 | "font": "noteplanstate", 146 | "color": "#010101", 147 | "headIndent": 33, 148 | "size": 16 149 | }, 150 | 151 | "checked-todo-characters": { 152 | "font": "noteplanstate", 153 | "headIndent": 33, 154 | "size": 16 155 | }, 156 | 157 | "special-char": { 158 | "font": "FiraCode-Regular", 159 | }, 160 | 161 | "tabbed": { 162 | "headIndent": 43 163 | }, 164 | 165 | "quote-mark": { 166 | "color": "#1111bb", 167 | "font": "noteplanstate", 168 | "headIndent": 33, 169 | "size": 16 170 | }, 171 | 172 | "quote-content": { 173 | "color": "#000011", 174 | "font": "VulfMono-LightItalic", 175 | "headIndent": 33, 176 | "size": 24, 177 | }, 178 | 179 | "link": { 180 | "font": "VulfMono-LightItalic", 181 | }, 182 | 183 | "schedule-to-date-link": { 184 | "font": "VulfMono-LightItalic", 185 | }, 186 | 187 | "done-date": { 188 | "font": "VulfMono-LightItalic", 189 | }, 190 | 191 | "schedule-from-date-link": { 192 | "font": "VulfMono-LightItalic", 193 | }, 194 | 195 | "note-title-link": { 196 | "font": "VulfMono-LightItalic", 197 | }, 198 | 199 | "hashtag": { 200 | "font": "VulfMono-LightItalic", 201 | }, 202 | 203 | "attag": { 204 | "font": "VulfMono-LightItalic", 205 | }, 206 | 207 | "phonenumber": { 208 | "font": "VulfMono-LightItalic", 209 | }, 210 | 211 | "highlighted": { 212 | "regex": "(::)([^:]{1,})(::)", 213 | "matchPosition": 2, 214 | "isRevealOnCursorRange": true, 215 | "backgroundColor": "#000000", 216 | "color": "#ffffff", 217 | }, 218 | 219 | "highlighted-left-colon": { 220 | "regex": "(::)([^:]{1,})(::)", 221 | "matchPosition": 1, 222 | "isMarkdownCharacter": true, 223 | "isHiddenWithoutCursor": true, 224 | "isRevealOnCursorRange": true, 225 | "color": "#000000", 226 | "backgroundColor": "#cc0000", 227 | }, 228 | 229 | "highlighted-right-colon": { 230 | "regex": "(::)([^:]{1,})(::)", 231 | "matchPosition": 3, 232 | "isMarkdownCharacter": true, 233 | "isHiddenWithoutCursor": true, 234 | "isRevealOnCursorRange": true, 235 | "color": "#000000", 236 | "backgroundColor": "#cc0000", 237 | }, 238 | 239 | "flagged-1": { 240 | "regex": "(^|\\v)(\\h*(\\*|-)\\h*(\\[ \\]\\h+|\\h+)\\!{1}\\h+.*)($|\\v)", 241 | "matchPosition": 2, 242 | "backgroundColor": "#22cc0000", 243 | "headIndent": 33 244 | }, 245 | 246 | "flagged-2": { 247 | "regex": "(^|\\v)(\\h*(\\*|-)\\h*(\\[ \\]\\h+|\\h+)\\!{2}\\h+.*)($|\\v)", 248 | "matchPosition": 2, 249 | "backgroundColor": "#55cc0000", 250 | "headIndent": 33 251 | }, 252 | 253 | "flagged-3": { 254 | "regex": "(^|\\v)(\\h*(\\*|-)\\h*(\\[ \\]\\h+|\\h+)\\!{3}\\h+.*)($|\\v)", 255 | "matchPosition": 2, 256 | "backgroundColor": "#AAcc0000", 257 | "headIndent": 33 258 | }, 259 | 260 | } 261 | } 262 | -------------------------------------------------------------------------------- /bin/Colorful Grey heart.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "Colorful Grey heart", 3 | "style": "Light", 4 | "author": { 5 | "name": "dntme17", 6 | "email": "" 7 | }, 8 | 9 | "editor": { 10 | "backgroundColor": "#f6f7f7", 11 | "altBackgroundColor": "#ededed", 12 | "tintColor": "#0095c9", 13 | "tintColor2": "#8d5304", 14 | "textColor":"#191a19", 15 | "toolbarBackgroundColor": "#dcdcdc", 16 | "toolbarIconColor": "#c6c4c2", 17 | "menuItemColor": "#444444", 18 | "shouldOverwriteFont": false 19 | }, 20 | 21 | "styles": { 22 | 23 | "body": { 24 | "font": "iAWriterMonoV-Regular", 25 | "size": 14, 26 | "color": "#191a19", 27 | }, 28 | 29 | "title1": { 30 | "size": 28, 31 | "font": "iAWriterMonoV-Bold", 32 | }, 33 | 34 | "title2": { 35 | "size": 24, 36 | "font": "iAWriterMonoV-Bold", 37 | }, 38 | 39 | "title3": { 40 | "regex": "^\\h*(### )(.*)", 41 | "size": 20, 42 | "font": "iAWriterMonoV-Bold", 43 | }, 44 | 45 | "title4": { 46 | "regex": "^\\h*(####+ )(.*)", 47 | "matchPosition": 2, 48 | "size": 17, 49 | "font": "iAWriterMonoV-Bold", 50 | }, 51 | 52 | "title-mark1-custom": { 53 | "regex": "^\\h*(# )(.*)", 54 | "matchPosition": 1, 55 | "color": "#c6c4c2", 56 | "size": 28, 57 | }, 58 | 59 | "title-mark2-custom": { 60 | "regex": "^\\h*(## )(.*)", 61 | "matchPosition": 1, 62 | "color": "#c6c4c2", 63 | "size": 24, 64 | }, 65 | 66 | "title-mark3-custom": { 67 | "regex": "^\\h*(### )(.*)", 68 | "matchPosition": 1, 69 | "color": "#c6c4c2", 70 | "size": 20, 71 | }, 72 | 73 | "title-mark4-custom": { 74 | "regex": "^\\h*(####+ )(.*)", 75 | "matchPosition": 1, 76 | "color": "#c6c4c2", 77 | "size": 17, 78 | }, 79 | 80 | "bold": { 81 | "type": "bold", 82 | "font": "iAWriterMonoV-Bold", 83 | }, 84 | 85 | "bold-left-mark-custom": { 86 | "regex": "(^|[\\W_])(?:(?!\\1)|(?=^))((\\*|_)\\3)(?=\\S)(.*?\\S)(\\3\\3)(?!\\2)(?=[\\W_]|$)", 87 | "matchPosition": 2, 88 | "color": "#c6c4c2", 89 | }, 90 | 91 | "bold-right-mark-custom": { 92 | "regex": "(^|[\\W_])(?:(?!\\1)|(?=^))(\\*|_)\\2(?=\\S)(.*?\\S)(\\2\\2)(?!\\2)(?=[\\W_]|$)", 93 | "matchPosition": 4, 94 | "color": "#c6c4c2", 95 | }, 96 | 97 | "italic": { 98 | "type": "italic", 99 | "font": "iAWriterMonoV-Italic", 100 | }, 101 | 102 | "italic-left-mark-custom": { 103 | "regex": "(^|[\\W_])(?:(?!\\1)|(?=^))(\\*|_)(?=\\S)((?:(?!\\2).)*?\\S)(\\2)(?!\\2)(?=[\\W_]|$)", 104 | "matchPosition": 2, 105 | "color": "#c6c4c2", 106 | }, 107 | 108 | "italic-right-mark-custom": { 109 | "regex": "(^|[\\W_])(?:(?!\\1)|(?=^))(\\*|_)(?=\\S)((?:(?!\\2).)*?\\S)(\\2)(?!\\2)(?=[\\W_]|$)", 110 | "matchPosition": 4, 111 | "color": "#c6c4c2", 112 | }, 113 | 114 | "boldItalic": { 115 | "type": "bolditalic", 116 | "font": "iAWriterMonoV-BoldItalic", 117 | }, 118 | 119 | "boldItalic-left-mark": { 120 | "color": "#c6c4c2" 121 | }, 122 | 123 | "boldItalic-right-mark": { 124 | "color": "#c6c4c2" 125 | }, 126 | 127 | "code": { 128 | "font": "Menlo-Regular", 129 | "size": 14, 130 | "color": "#006699", 131 | "backgroundColor": "#ffffff", 132 | 133 | }, 134 | 135 | "code-left-backtick-custom": { 136 | "regex": "(`)([^`]{1,})(`)", 137 | "matchPosition": 1, 138 | "type": "bold", 139 | "color": "#85006d", 140 | "backgroundColor": "#ffffff", 141 | "font": "Menlo-Regular", 142 | }, 143 | 144 | "code-right-backtick-custom": { 145 | "regex": "(`)([^`]{1,})(`)", 146 | "matchPosition": 3, 147 | "type": "bold", 148 | "color": "#85006d", 149 | "backgroundColor": "#ffffff", 150 | "font": "Menlo-Regular", 151 | }, 152 | 153 | "checked": { 154 | "color": "#c6c4c2", 155 | "headIndent": 33 156 | }, 157 | 158 | "todo": { 159 | "font": "noteplanstate", 160 | "color": "#006699", 161 | "headIndent": 33, 162 | "size": 16 163 | }, 164 | 165 | "checked-todo-characters": { 166 | "font": "noteplanstate", 167 | "headIndent": 33, 168 | "size": 16 169 | }, 170 | 171 | "special-char": { 172 | "font": "Menlo-Regular" 173 | }, 174 | 175 | "tabbed": { 176 | "headIndent": 43 177 | }, 178 | 179 | "quote-mark": { 180 | "color": "#006699", 181 | "font": "noteplanstate", 182 | "headIndent": 33, 183 | "size": 16 184 | }, 185 | 186 | "quote-content": { 187 | "color": "#85006d", 188 | "type": "italic", 189 | "headIndent": 33 190 | }, 191 | 192 | "highlighted-left-mark": { 193 | "regex": "(::|==)([^=:]{1,})(::|==)", 194 | "matchPosition": 1, 195 | "color": "#c1c100", 196 | "backgroundColor": "#eaea00" 197 | }, 198 | 199 | "highlighted-right-mark": { 200 | "regex": "(::|==)([^=:]{1,})(::|==)", 201 | "matchPosition": 3, 202 | "color": "#c1c100", 203 | "backgroundColor": "#eaea00" 204 | }, 205 | 206 | "highlighted": { 207 | "regex": "(::|==)([^=:]{1,})(::|==)", 208 | "matchPosition": 2, 209 | "color": "#191a19", 210 | "backgroundColor": "#eaea00" 211 | }, 212 | 213 | "strikethrough": { 214 | "regex": "(~~)([^:]{1,})(~~)", 215 | "matchPosition": 0, 216 | "strikethroughStyle": 1, 217 | "strikethroughColor": "#b9b9ba", 218 | "color": "#b9b9ba", 219 | }, 220 | 221 | "hot": { 222 | "regex": "(^|\\v)\\h*(\\*|-)\\h*\\[ \\]\\h+(.*?#hot.*)($|\\v)", 223 | "matchPosition": 3, 224 | "backgroundColor": "#ffffa3", 225 | }, 226 | 227 | "link": {}, 228 | "schedule-to-date-link": {}, 229 | "done-date": {}, 230 | "schedule-from-date-link": {}, 231 | "note-title-link": {}, 232 | "hashtag": {}, 233 | "attag": {}, 234 | "phonenumber": {} 235 | } 236 | } -------------------------------------------------------------------------------- /bin/Dark Blue.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "Dark Blue", 3 | "style": "Dark", 4 | "author": { 5 | "name": "Jane", 6 | "email": "jane@email.com" 7 | }, 8 | "editor": { 9 | "backgroundColor": "#313638", 10 | "altBackgroundColor": "#525152", 11 | "tintColor": "#A3D0E1", 12 | "tintColor2": "#729781", 13 | "textColor": "#E5E3DC", 14 | "toolbarBackgroundColor": "#313638", 15 | "toolbarIconColor": "#FAFAFA", 16 | "menuItemColor": "#FAFAFA", 17 | "shouldOverwriteFont": true 18 | }, 19 | "styles": { 20 | "body": { 21 | "font": "AvenirNext-Regular", 22 | "size": 16, 23 | "color": "#E5E3DC" 24 | }, 25 | "title1": { 26 | "color": "#327E9A", 27 | "size": 28, 28 | "font": "AvenirNext-DemiBold" 29 | }, 30 | "title2": { 31 | "color": "#3C98B9", 32 | "size": 24, 33 | "font": "AvenirNext-DemiBold" 34 | }, 35 | "title3": { 36 | "color": "#56AAC8", 37 | "size": 20, 38 | "font": "AvenirNext-DemiBold" 39 | }, 40 | "title-mark1": { 41 | "color": "#327E9A", 42 | "size": 28, 43 | "font": "AvenirNext-DemiBold" 44 | }, 45 | "title-mark2": { 46 | "color": "#3C98B9", 47 | "size": 24, 48 | "font": "AvenirNext-DemiBold" 49 | }, 50 | "title-mark3": { 51 | "color": "#56AAC8", 52 | "size": 20, 53 | "font": "AvenirNext-DemiBold" 54 | }, 55 | "bold": { 56 | "color": "#E7C15F", 57 | "font": "AvenirNext-Bold" 58 | }, 59 | "bold-left-mark": { 60 | "color": "#E7C15F" 61 | }, 62 | "bold-right-mark": { 63 | "color": "#E7C15F" 64 | }, 65 | "italic": { 66 | "color": "#979AC4", 67 | "font": "AvenirNext-Italic" 68 | }, 69 | "italic-left-mark": { 70 | "color": "#979AC4" 71 | }, 72 | "italic-right-mark": { 73 | "color": "#979AC4" 74 | }, 75 | "boldItalic": { 76 | "font": "AvenirNext-BoldItalic" 77 | }, 78 | "boldItalic-left-mark": { 79 | "color": "#979AC4" 80 | }, 81 | "boldItalic-right-mark": { 82 | "color": "#979AC4" 83 | }, 84 | "code": { 85 | "font": "Menlo-Regular", 86 | "color": "#E76F51", 87 | "size": 15 88 | }, 89 | "code-left-backtick": { 90 | "color": "#E76F51" 91 | }, 92 | "code-right-backtick": { 93 | "color": "#E76F51" 94 | }, 95 | "checked": { 96 | "headIndent": 33 97 | }, 98 | "todo": { 99 | "font": "noteplanstate", 100 | "color": "#A3B18A", 101 | "headIndent": 33, 102 | "size": 16 103 | }, 104 | "checked-todo-characters": { 105 | "font": "noteplanstate", 106 | "headIndent": 33, 107 | "size": 16 108 | }, 109 | "checked-completed-mark": { 110 | "regex": "(^\\h*[\\*\\-]{1} |^\\h*[0-9]+[\\.\\)] )(\\[x\\] )", 111 | "matchPosition": 0, 112 | "color": "#76875A", 113 | "headIndent": 33 114 | }, 115 | "checked-completed-content": { 116 | "regex": "(^\\h*[\\*\\-]{1} |^\\h*[0-9]+[\\.\\)] )(\\[x\\] )(.*)", 117 | "matchPosition": 3, 118 | "color": "#76875A", 119 | "headIndent": 33 120 | }, 121 | "checked-scheduled": { 122 | "regex": "(^\\h*[\\*\\-]{1} |^\\h*[0-9]+[\\.\\)] )(\\[\\>\\] )", 123 | "matchPosition": 0, 124 | "color": "#A3B18A", 125 | "headIndent": 33 126 | }, 127 | "checked-canceled": { 128 | "regex": "(^\\h*[\\*\\-]{1} |^\\h*[0-9]+[\\.\\)] )(\\[\\-\\] )(.*)", 129 | "matchPosition": 0, 130 | "color": "#B1BE9D", 131 | "headIndent": 33 132 | }, 133 | "special-char": { 134 | "font": "Menlo-Regular" 135 | }, 136 | "tabbed": { 137 | "headIndent": 43 138 | }, 139 | "quote-mark": { 140 | "color": "#A76281", 141 | "font": "noteplanstate", 142 | "headIndent": 33, 143 | "size": 16 144 | }, 145 | "quote-content": { 146 | "color": "#C2C1C2", 147 | "type": "italic", 148 | "headIndent": 33 149 | }, 150 | "highlighted": { 151 | "regex": "(::)([^:]{1,})(::)", 152 | "matchPosition": 2, 153 | "isRevealOnCursorRange": true, 154 | "backgroundColor": "#AAA3D0E1" 155 | }, 156 | "highlighted-left-colon": { 157 | "regex": "(::)([^:]{1,})(::)", 158 | "matchPosition": 1, 159 | "isMarkdownCharacter": true, 160 | "isHiddenWithoutCursor": true, 161 | "isRevealOnCursorRange": true, 162 | "color": "#e1c4dee5", 163 | "backgroundColor": "#77E5B49E" 164 | }, 165 | "highlighted-right-colon": { 166 | "regex": "(::)([^:]{1,})(::)", 167 | "matchPosition": 3, 168 | "isMarkdownCharacter": true, 169 | "isHiddenWithoutCursor": true, 170 | "isRevealOnCursorRange": true, 171 | "color": "#e1c4dee5", 172 | "backgroundColor": "#77E5B49E" 173 | }, 174 | "flagged-1": { 175 | "regex": "(^|\\v)(\\h*(\\*|-)\\h*(\\[ \\]\\h+|\\h+)(\\!{1}\\h+.*))($|\\v)", 176 | "matchPosition": 5, 177 | "backgroundColor": "#22D0021B", 178 | "headIndent": 33 179 | }, 180 | "flagged-2": { 181 | "regex": "(^|\\v)(\\h*(\\*|-)\\h*(\\[ \\]\\h+|\\h+)(\\!{2}\\h+.*))($|\\v)", 182 | "matchPosition": 5, 183 | "backgroundColor": "#55D0021B", 184 | "headIndent": 33 185 | }, 186 | "flagged-3": { 187 | "regex": "(^|\\v)(\\h*(\\*|-)\\h*(\\[ \\]\\h+|\\h+)(\\!{3}\\h+.*))($|\\v)", 188 | "matchPosition": 5, 189 | "backgroundColor": "#AAD0021B", 190 | "headIndent": 33 191 | }, 192 | "strikethrough": { 193 | "regex": "(~~)([^:]{1,})(~~)", 194 | "matchPosition": 2, 195 | "isRevealOnCursorRange": true, 196 | "color": "#D7D6D7", 197 | "strikethroughStyle": 1, 198 | "strikethroughColor": "#B3B6BD" 199 | }, 200 | "strikethrough-left-tildes": { 201 | "regex": "(~~)([^:]{1,})(~~)", 202 | "matchPosition": 1, 203 | "isMarkdownCharacter": true, 204 | "isHiddenWithoutCursor": true, 205 | "isRevealOnCursorRange": true, 206 | "color": "#66c5c5c0" 207 | }, 208 | "strikethrough-right-tildes": { 209 | "regex": "(~~)([^:]{1,})(~~)", 210 | "matchPosition": 3, 211 | "isMarkdownCharacter": true, 212 | "isHiddenWithoutCursor": true, 213 | "isRevealOnCursorRange": true, 214 | "color": "#66c5c5c0" 215 | }, 216 | "link": {}, 217 | "schedule-to-date-link": {}, 218 | "done-date": {}, 219 | "schedule-from-date-link": {}, 220 | "note-title-link": {}, 221 | "hashtag": {}, 222 | "attag": {}, 223 | "phonenumber": {} 224 | } 225 | } -------------------------------------------------------------------------------- /bin/Dark Purple.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "Dark Purple", 3 | "style": "Dark", 4 | "author": { 5 | "name": "Jane", 6 | "email": "jane@email.com" 7 | }, 8 | "editor": { 9 | "backgroundColor": "#313638", 10 | "altBackgroundColor": "#525152", 11 | "tintColor": "#D6B80A", 12 | "tintColor2": "#729781", 13 | "textColor": "#D7D6D7", 14 | "toolbarBackgroundColor": "#313638", 15 | "toolbarIconColor": "#FAFAFA", 16 | "menuItemColor": "#FAFAFA", 17 | "shouldOverwriteFont": true 18 | }, 19 | "styles": { 20 | "body": { 21 | "font": "AvenirNext-Regular", 22 | "size": 16, 23 | "color": "#D7D6D7" 24 | }, 25 | "title1": { 26 | "color": "#B47E9A", 27 | "size": 28, 28 | "font": "AvenirNext-DemiBold" 29 | }, 30 | "title2": { 31 | "color": "#C398AE", 32 | "size": 24, 33 | "font": "AvenirNext-DemiBold" 34 | }, 35 | "title3": { 36 | "color": "#CAA5B8", 37 | "size": 20, 38 | "font": "AvenirNext-DemiBold" 39 | }, 40 | "title-mark1": { 41 | "color": "#736372", 42 | "size": 28, 43 | "font": "AvenirNext-DemiBold" 44 | }, 45 | "title-mark2": { 46 | "color": "#8D7C8C", 47 | "size": 24, 48 | "font": "AvenirNext-DemiBold" 49 | }, 50 | "title-mark3": { 51 | "color": "#A0929F", 52 | "size": 20, 53 | "font": "AvenirNext-DemiBold" 54 | }, 55 | "bold": { 56 | "color": "#62929E", 57 | "font": "AvenirNext-Bold" 58 | }, 59 | "bold-left-mark": { 60 | "color": "#62929E" 61 | }, 62 | "bold-right-mark": { 63 | "color": "#62929E" 64 | }, 65 | "italic": { 66 | "color": "#62929E", 67 | "font": "AvenirNext-Italic" 68 | }, 69 | "italic-left-mark": { 70 | "color": "#62929E" 71 | }, 72 | "italic-right-mark": { 73 | "color": "#62929E" 74 | }, 75 | "boldItalic": { 76 | "font": "AvenirNext-BoldItalic" 77 | }, 78 | "boldItalic-left-mark": { 79 | "color": "#62929E" 80 | }, 81 | "boldItalic-right-mark": { 82 | "color": "#62929E" 83 | }, 84 | "code": { 85 | "font": "Menlo-Regular", 86 | "color": "#D97430", 87 | "size": 15 88 | }, 89 | "code-left-backtick": { 90 | "color": "#D97430" 91 | }, 92 | "code-right-backtick": { 93 | "color": "#D97430" 94 | }, 95 | "checked": { 96 | "headIndent": 33 97 | }, 98 | "todo": { 99 | "font": "noteplanstate", 100 | "color": "#72AC99", 101 | "headIndent": 33, 102 | "size": 16 103 | }, 104 | "checked-todo-characters": { 105 | "font": "noteplanstate", 106 | "headIndent": 33, 107 | "size": 16 108 | }, 109 | "checked-completed-mark": { 110 | "regex": "(^\\h*[\\*\\-]{1} |^\\h*[0-9]+[\\.\\)] )(\\[x\\] )", 111 | "matchPosition": 0, 112 | "color": "#98C3B4", 113 | "headIndent": 33 114 | }, 115 | "checked-completed-content": { 116 | "regex": "(^\\h*[\\*\\-]{1} |^\\h*[0-9]+[\\.\\)] )(\\[x\\] )(.*)", 117 | "matchPosition": 3, 118 | "color": "#98C3B4", 119 | "headIndent": 33 120 | }, 121 | "checked-scheduled": { 122 | "regex": "(^\\h*[\\*\\-]{1} |^\\h*[0-9]+[\\.\\)] )(\\[\\>\\] )", 123 | "matchPosition": 0, 124 | "color": "#72AC99", 125 | "headIndent": 33 126 | }, 127 | "checked-canceled": { 128 | "regex": "(^\\h*[\\*\\-]{1} |^\\h*[0-9]+[\\.\\)] )(\\[\\-\\] )(.*)", 129 | "matchPosition": 0, 130 | "color": "#538D7A", 131 | "headIndent": 33 132 | }, 133 | "special-char": { 134 | "font": "Menlo-Regular" 135 | }, 136 | "tabbed": { 137 | "headIndent": 43 138 | }, 139 | "quote-mark": { 140 | "color": "#72AC99", 141 | "font": "noteplanstate", 142 | "headIndent": 33, 143 | "size": 16 144 | }, 145 | "quote-content": { 146 | "color": "#C2C1C2", 147 | "type": "italic", 148 | "headIndent": 33 149 | }, 150 | "highlighted": { 151 | "regex": "(::)([^:]{1,})(::)", 152 | "matchPosition": 2, 153 | "isRevealOnCursorRange": true, 154 | "backgroundColor": "#AAEECEBF" 155 | }, 156 | "highlighted-left-colon": { 157 | "regex": "(::)([^:]{1,})(::)", 158 | "matchPosition": 1, 159 | "isMarkdownCharacter": true, 160 | "isHiddenWithoutCursor": true, 161 | "isRevealOnCursorRange": true, 162 | "color": "#e1c4dee5", 163 | "backgroundColor": "#77E5B49E" 164 | }, 165 | "highlighted-right-colon": { 166 | "regex": "(::)([^:]{1,})(::)", 167 | "matchPosition": 3, 168 | "isMarkdownCharacter": true, 169 | "isHiddenWithoutCursor": true, 170 | "isRevealOnCursorRange": true, 171 | "color": "#e1c4dee5", 172 | "backgroundColor": "#77E5B49E" 173 | }, 174 | "flagged-1": { 175 | "regex": "(^|\\v)(\\h*(\\*|-)\\h*(\\[ \\]\\h+|\\h+)(\\!{1}\\h+.*))($|\\v)", 176 | "matchPosition": 5, 177 | "backgroundColor": "#22D0021B", 178 | "headIndent": 33 179 | }, 180 | "flagged-2": { 181 | "regex": "(^|\\v)(\\h*(\\*|-)\\h*(\\[ \\]\\h+|\\h+)(\\!{2}\\h+.*))($|\\v)", 182 | "matchPosition": 5, 183 | "backgroundColor": "#55D0021B", 184 | "headIndent": 33 185 | }, 186 | "flagged-3": { 187 | "regex": "(^|\\v)(\\h*(\\*|-)\\h*(\\[ \\]\\h+|\\h+)(\\!{3}\\h+.*))($|\\v)", 188 | "matchPosition": 5, 189 | "backgroundColor": "#AAD0021B", 190 | "headIndent": 33 191 | }, 192 | "strikethrough": { 193 | "regex": "(~~)([^:]{1,})(~~)", 194 | "matchPosition": 2, 195 | "isRevealOnCursorRange": true, 196 | "color": "#D7D6D7", 197 | "strikethroughStyle": 1, 198 | "strikethroughColor": "#B3B6BD" 199 | }, 200 | "strikethrough-left-tildes": { 201 | "regex": "(~~)([^:]{1,})(~~)", 202 | "matchPosition": 1, 203 | "isMarkdownCharacter": true, 204 | "isHiddenWithoutCursor": true, 205 | "isRevealOnCursorRange": true, 206 | "color": "#66c5c5c0" 207 | }, 208 | "strikethrough-right-tildes": { 209 | "regex": "(~~)([^:]{1,})(~~)", 210 | "matchPosition": 3, 211 | "isMarkdownCharacter": true, 212 | "isHiddenWithoutCursor": true, 213 | "isRevealOnCursorRange": true, 214 | "color": "#66c5c5c0" 215 | }, 216 | "link": {}, 217 | "schedule-to-date-link": {}, 218 | "done-date": {}, 219 | "schedule-from-date-link": {}, 220 | "note-title-link": {}, 221 | "hashtag": {}, 222 | "attag": {}, 223 | "phonenumber": {} 224 | } 225 | } -------------------------------------------------------------------------------- /bin/Freestraction Simplified Dark.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "Freestraction Simplified Dark", 3 | "style": "Dark", 4 | "author": { 5 | "name": "Shawn Blanc", 6 | "email": "desk@shawnblanc.net" 7 | }, 8 | "editor": { 9 | "backgroundColor": "#1a1a1a", 10 | "altBackgroundColor": "#1a1a1a", 11 | "tintColor": "#6b8e9d", 12 | "tintColor2": "#c23184", 13 | "textColor": "#999999", 14 | "toolbarBackgroundColor": "#1a1a1a", 15 | "toolbarIconColor": "#c23184", 16 | "menuItemColor": "#6b8e9d", 17 | "shouldOverwriteFont": false 18 | }, 19 | "styles": { 20 | "body": { 21 | "font": "HelveticaNeue", 22 | "size": 14, 23 | "color": "#999999" 24 | }, 25 | "title1": { 26 | "color": "#009bc9", 27 | "font": "HelveticaNeue-Bold", 28 | "size": 18 29 | }, 30 | "title2": { 31 | "color": "#009bc9", 32 | "font": "HelveticaNeue-Bold", 33 | "size": 16 34 | }, 35 | "title3": { 36 | "color": "#009bc9", 37 | "font": "HelveticaNeue-Bold", 38 | "size": 14 39 | }, 40 | "title-mark1": { 41 | "color": "#009bc9", 42 | "size": 18, 43 | "font": "HelveticaNeue-Bold" 44 | }, 45 | "title-mark2": { 46 | "color": "#009bc9", 47 | "size": 16, 48 | "font": "HelveticaNeue-Bold" 49 | }, 50 | "title-mark3": { 51 | "color": "#009bc9", 52 | "size": 14, 53 | "font": "HelveticaNeue-Bold" 54 | }, 55 | "bold": { 56 | "color": "#999999", 57 | "size": 14, 58 | "font": "HelveticaNeue-Bold" 59 | }, 60 | "bold-left-mark": { 61 | "color": "#999999" 62 | }, 63 | "bold-right-mark": { 64 | "color": "#999999" 65 | }, 66 | "italic": { 67 | "color": "#999999", 68 | "size": 14, 69 | "font": "HelveticaNeue-Italic" 70 | }, 71 | "italic-left-mark": { 72 | "color": "#999999" 73 | }, 74 | "italic-right-mark": { 75 | "color": "#999999" 76 | }, 77 | "boldItalic": { 78 | "color": "#999999", 79 | "size": 14, 80 | "font": "HelveticaNeue-BoldItalic" 81 | }, 82 | "boldItalic-left-mark": { 83 | "color": "#999999" 84 | }, 85 | "boldItalic-right-mark": { 86 | "color": "#999999" 87 | }, 88 | "code": { 89 | "font": "Menlo", 90 | "color": "#009155", 91 | "backgroundColor": "#182520" 92 | }, 93 | "checked": { 94 | "color": "#77999999", 95 | "headIndent": 33 96 | }, 97 | "todo": { 98 | "font": "noteplanstate", 99 | "color": "#009bc9", 100 | "headIndent": 33, 101 | "size": 14 102 | }, 103 | "checked-todo-characters": { 104 | "font": "noteplanstate", 105 | "headIndent": 33, 106 | "size": 14 107 | }, 108 | "special-char": { 109 | "color": "#999999", 110 | "font": "Menlo" 111 | }, 112 | "tabbed": { 113 | "headIndent": 43 114 | }, 115 | "quote-mark": { 116 | "color": "#133e4b", 117 | "font": "noteplanstate", 118 | "headIndent": 33, 119 | "size": 14 120 | }, 121 | "quote-content": { 122 | "color": "#999999", 123 | "type": "italic", 124 | "headIndent": 33, 125 | "font": "HelveticaNeue-Italic", 126 | "size": 14 127 | }, 128 | "link": { 129 | "backgroundColor": "#242424" 130 | }, 131 | "schedule-to-date-link": {}, 132 | "done-date": {}, 133 | "schedule-from-date-link": {}, 134 | "note-title-link": {}, 135 | "hashtag": {}, 136 | "attag": {}, 137 | "phonenumber": {}, 138 | "highlighted": { 139 | "regex": "(::)([^:]{1,})(::)", 140 | "matchPosition": 2, 141 | "isRevealOnCursorRange": true, 142 | "color": "#9f8e43", 143 | "backgroundColor": "#2c2c1c" 144 | }, 145 | "highlighted-left-colon": { 146 | "regex": "(::)([^:]{1,})(::)", 147 | "matchPosition": 1, 148 | "isMarkdownCharacter": true, 149 | "isHiddenWithoutCursor": true, 150 | "isRevealOnCursorRange": true, 151 | "color": "#dbc831" 152 | }, 153 | "highlighted-right-colon": { 154 | "regex": "(::)([^:]{1,})(::)", 155 | "matchPosition": 3, 156 | "isMarkdownCharacter": true, 157 | "isHiddenWithoutCursor": true, 158 | "isRevealOnCursorRange": true, 159 | "color": "#dbc831" 160 | }, 161 | "code-left-backtick": { 162 | "color": "#009155" 163 | }, 164 | "code-right-backtick": { 165 | "color": "#009155" 166 | }, 167 | "strikethrough": { 168 | "regex": "(~~)([^~]{1,})(~~)", 169 | "matchPosition": 2, 170 | "strikethroughStyle": 1, 171 | "color": "#009bc9", 172 | "isRevealOnCursorRange": true 173 | }, 174 | "strikethrough-left-tilde": { 175 | "regex": "(~~)([^~]{1,})(~~)", 176 | "matchPosition": 1, 177 | "isMarkdownCharacter": true, 178 | "isHiddenWithoutCursor": true, 179 | "color": "#133e4b", 180 | "isRevealOnCursorRange": true 181 | }, 182 | "strikethrough-right-tilde": { 183 | "regex": "(~~)([^~]{1,})(~~)", 184 | "matchPosition": 3, 185 | "isMarkdownCharacter": true, 186 | "color": "#133e4b", 187 | "isHiddenWithoutCursor": true, 188 | "isRevealOnCursorRange": true 189 | } 190 | } 191 | } -------------------------------------------------------------------------------- /bin/Freestraction Simplified Light.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "Freestraction Simplified", 3 | "style": "Light", 4 | "author": { 5 | "name": "Shawn Blanc", 6 | "email": "desk@shawnblanc.net" 7 | }, 8 | "editor": { 9 | "backgroundColor": "#f3f3f3", 10 | "altBackgroundColor": "#FAFFFF", 11 | "tintColor": "#47697a", 12 | "tintColor2": "#c23184", 13 | "textColor": "#656565", 14 | "toolbarBackgroundColor": "#f3f3f3", 15 | "toolbarIconColor": "#656565", 16 | "menuItemColor": "#656565", 17 | "shouldOverwriteFont": false 18 | }, 19 | "styles": { 20 | "body": { 21 | "font": "HelveticaNeue", 22 | "size": 14, 23 | "color": "#656565" 24 | }, 25 | "title1": { 26 | "color": "#009bc9", 27 | "font": "HelveticaNeue-Bold", 28 | "size": 18 29 | }, 30 | "title2": { 31 | "color": "#009bc9", 32 | "font": "HelveticaNeue-Bold", 33 | "size": 16 34 | }, 35 | "title3": { 36 | "color": "#656565", 37 | "font": "HelveticaNeue-Bold", 38 | "size": 14 39 | }, 40 | "title-mark1": { 41 | "color": "#009bc9", 42 | "size": 18, 43 | "font": "HelveticaNeue-Bold" 44 | }, 45 | "title-mark2": { 46 | "color": "#009bc9", 47 | "size": 16, 48 | "font": "HelveticaNeue-Bold" 49 | }, 50 | "title-mark3": { 51 | "color": "#656565", 52 | "size": 14, 53 | "font": "HelveticaNeue-Bold" 54 | }, 55 | "bold": { 56 | "color": "#656565", 57 | "size": 14, 58 | "font": "HelveticaNeue-Bold" 59 | }, 60 | "bold-left-mark": { 61 | "color": "#656565" 62 | }, 63 | "bold-right-mark": { 64 | "color": "#656565" 65 | }, 66 | "italic": { 67 | "color": "#656565", 68 | "size": 14, 69 | "font": "HelveticaNeue-Italic" 70 | }, 71 | "italic-left-mark": { 72 | "color": "#656565" 73 | }, 74 | "italic-right-mark": { 75 | "color": "#656565" 76 | }, 77 | "boldItalic": { 78 | "color": "#656565", 79 | "size": 14, 80 | "font": "HelveticaNeue-BoldItalic" 81 | }, 82 | "boldItalic-left-mark": { 83 | "color": "#656565" 84 | }, 85 | "boldItalic-right-mark": { 86 | "color": "#656565" 87 | }, 88 | "code": { 89 | "font": "Menlo", 90 | "color": "#009155", 91 | "backgroundColor": "#daeae3" 92 | }, 93 | "checked": { 94 | "color": "#77656565", 95 | "headIndent": 33 96 | }, 97 | "todo": { 98 | "font": "noteplanstate", 99 | "color": "#009bc9", 100 | "headIndent": 33, 101 | "size": 14 102 | }, 103 | "checked-todo-characters": { 104 | "font": "noteplanstate", 105 | "headIndent": 33, 106 | "size": 14 107 | }, 108 | "special-char": { 109 | "color": "#656565", 110 | "font": "Menlo" 111 | }, 112 | "tabbed": { 113 | "headIndent": 43 114 | }, 115 | "quote-mark": { 116 | "color": "#afdae8", 117 | "font": "noteplanstate", 118 | "headIndent": 33, 119 | "size": 14 120 | }, 121 | "quote-content": { 122 | "color": "#009bc9", 123 | "type": "italic", 124 | "headIndent": 33, 125 | "font": "HelveticaNeue-Italic", 126 | "size": 14 127 | }, 128 | "link": { 129 | "backgroundColor": "#e4e5e4" 130 | }, 131 | "schedule-to-date-link": {}, 132 | "done-date": {}, 133 | "schedule-from-date-link": {}, 134 | "note-title-link": {}, 135 | "hashtag": {}, 136 | "attag": {}, 137 | "phonenumber": {}, 138 | "highlighted": { 139 | "regex": "(::)([^:]{1,})(::)", 140 | "matchPosition": 2, 141 | "isRevealOnCursorRange": true, 142 | "color": "656565", 143 | "backgroundColor": "#fff9ca" 144 | }, 145 | "highlighted-left-colon": { 146 | "regex": "(::)([^:]{1,})(::)", 147 | "matchPosition": 1, 148 | "isMarkdownCharacter": true, 149 | "isHiddenWithoutCursor": true, 150 | "isRevealOnCursorRange": true, 151 | "color": "#dbc831" 152 | }, 153 | "highlighted-right-colon": { 154 | "regex": "(::)([^:]{1,})(::)", 155 | "matchPosition": 3, 156 | "isMarkdownCharacter": true, 157 | "isHiddenWithoutCursor": true, 158 | "isRevealOnCursorRange": true, 159 | "color": "#dbc831" 160 | }, 161 | "code-left-backtick": { 162 | "color": "#009155" 163 | }, 164 | "code-right-backtick": { 165 | "color": "#009155" 166 | }, 167 | "strikethrough": { 168 | "regex": "(~~)([^~]{1,})(~~)", 169 | "matchPosition": 2, 170 | "strikethroughStyle": 1, 171 | "color": "#009bc9", 172 | "isRevealOnCursorRange": true 173 | }, 174 | "strikethrough-left-tilde": { 175 | "regex": "(~~)([^~]{1,})(~~)", 176 | "matchPosition": 1, 177 | "isMarkdownCharacter": true, 178 | "isHiddenWithoutCursor": true, 179 | "color": "#afdae8", 180 | "isRevealOnCursorRange": true 181 | }, 182 | "strikethrough-right-tilde": { 183 | "regex": "(~~)([^~]{1,})(~~)", 184 | "matchPosition": 3, 185 | "isMarkdownCharacter": true, 186 | "color": "#afdae8", 187 | "isHiddenWithoutCursor": true, 188 | "isRevealOnCursorRange": true 189 | } 190 | } 191 | } -------------------------------------------------------------------------------- /bin/Nord.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "Nord", 3 | "style": "Dark", 4 | "author": { 5 | "name": "dr_meeshelle", 6 | "email": "hello@noteplan.co" 7 | }, 8 | 9 | "editor": { 10 | "backgroundColor": "#2e3440", 11 | "altBackgroundColor": "#3b4252", 12 | "tintColor": "#8fbcbb", 13 | "tintColor2": "#88c0d0", 14 | "textColor":"#d8dee9", 15 | "toolbarBackgroundColor": "#2e3440", 16 | "toolbarIconColor": "#d8dee9", 17 | "menuItemColor": "#d8dee9", 18 | "shouldOverwriteFont": true 19 | }, 20 | 21 | "styles": { 22 | 23 | "body": { 24 | "font": "AvenirNext-Regular", 25 | "size": 16, 26 | "color": "#d8dee9", 27 | }, 28 | 29 | "title1": { 30 | "color": "#8fbcbb", 31 | "size": 28 32 | }, 33 | 34 | "title2": { 35 | "color": "#a3be8c", 36 | "size": 24 37 | }, 38 | 39 | "title3": { 40 | "color": "#88c0d0", 41 | "size": 20 42 | }, 43 | 44 | "title-mark1": { 45 | "color": "#45E1E3E2", 46 | "size": 28, 47 | "font": "AvenirNext-DemiBold" 48 | }, 49 | 50 | "title-mark2": { 51 | "color": "#45E1E3E2", 52 | "size": 24, 53 | "font": "AvenirNext-DemiBold" 54 | }, 55 | 56 | "title-mark3": { 57 | "color": "#45E1E3E2", 58 | "size": 20, 59 | "font": "AvenirNext-DemiBold" 60 | }, 61 | 62 | "bold": { 63 | "font": "AvenirNext-Bold" 64 | }, 65 | 66 | "bold-left-mark": { 67 | "color": "#8fbcbb" 68 | }, 69 | 70 | "bold-right-mark": { 71 | "color": "#8fbcbb" 72 | }, 73 | 74 | "italic": { 75 | "font": "AvenirNext-Italic" 76 | }, 77 | 78 | "italic-left-mark": { 79 | "color": "#8fbcbb" 80 | }, 81 | 82 | "italic-right-mark": { 83 | "color": "#8fbcbb" 84 | }, 85 | 86 | "boldItalic": { 87 | "font": "AvenirNext-BoldItalic" 88 | }, 89 | 90 | "boldItalic-left-mark": { 91 | "color": "#8fbcbb" 92 | }, 93 | 94 | "boldItalic-right-mark": { 95 | "color": "#8fbcbb" 96 | }, 97 | 98 | "code": { 99 | "font": "Menlo-Regular", 100 | "color": "#e5e9f0", 101 | "size": 15 102 | }, 103 | 104 | "code-left-backtick": { 105 | "color": "#e5e9f0" 106 | }, 107 | 108 | "code-right-backtick": { 109 | "color": "#e5e9f0" 110 | }, 111 | 112 | "checked": { 113 | "regex": "(^\\h*[\\*\\-]{1} |^\\h*[0-9]+[\\.\\)] )(\\[x\\] )(.*)", 114 | "matchPosition": 0, 115 | 116 | "color": "#4c566a", 117 | "headIndent": 33 118 | }, 119 | 120 | "checked-canceled": { 121 | "regex": "(^\\h*[\\*\\-]{1} |^\\h*[0-9]+[\\.\\)] )(\\[\\-\\] )(.*)", 122 | "matchPosition": 0, 123 | 124 | "color": "#3b4252", 125 | "headIndent": 33, 126 | "strikethroughStyle": 1 127 | }, 128 | 129 | "checked-scheduled": { 130 | "regex": "(^\\h*[\\*\\-]{1} |^\\h*[0-9]+[\\.\\)] )(\\[\\>\\] )(.*)", 131 | "matchPosition": 0, 132 | 133 | "color": "#b48ead", 134 | "headIndent": 33 135 | }, 136 | 137 | "todo": { 138 | "font": "noteplanstate", 139 | "color": "#8fbcbb", 140 | "headIndent": 33, 141 | "size": 16 142 | }, 143 | 144 | "checked-todo-characters": { 145 | "font": "noteplanstate", 146 | "headIndent": 33, 147 | "size": 16 148 | }, 149 | 150 | "special-char": { 151 | "font": "Menlo-Regular" 152 | }, 153 | 154 | "tabbed": { 155 | "headIndent": 43 156 | }, 157 | 158 | "quote-mark": { 159 | "color": "#4c566a", 160 | "font": "noteplanstate", 161 | "headIndent": 33, 162 | "size": 16 163 | }, 164 | 165 | "quote-content": { 166 | "color": "#5e81ac", 167 | "type": "italic", 168 | "headIndent": 33 169 | }, 170 | 171 | "markdown-link": { 172 | "color": "#a3be8c" 173 | }, 174 | 175 | "markdown-link-url": { 176 | "color": "#a3be8c" 177 | }, 178 | 179 | "link": { 180 | 181 | }, 182 | 183 | "schedule-to-date-link": { 184 | 185 | }, 186 | 187 | "done-date": { 188 | 189 | }, 190 | 191 | "schedule-from-date-link": { 192 | 193 | }, 194 | 195 | "note-title-link": { 196 | 197 | }, 198 | 199 | "hashtag": { 200 | 201 | }, 202 | 203 | "attag": { 204 | 205 | }, 206 | 207 | "phonenumber": { 208 | 209 | } 210 | } 211 | } -------------------------------------------------------------------------------- /bin/Noteworthy.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "Noteworthy (Mobile)", 3 | "style": "Light", 4 | "author": { 5 | "name": "Robert Grace", 6 | "email": "robert.grace@gmail.com" 7 | }, 8 | 9 | "editor": { 10 | "backgroundColor": "#fffff2", 11 | "altBackgroundColor": "#eeeee1", 12 | "tintColor": "#000000", 13 | "tintColor2": "#ff1010", 14 | "textColor":"#000000", 15 | "toolbarBackgroundColor": "#ffffe6", 16 | "toolbarIconColor": "#FF4444", 17 | "menuItemColor": "#cc4444", 18 | "shouldOverwriteFont": false 19 | }, 20 | 21 | "styles": { 22 | "body": { 23 | "font": "Noteworthy-Light", 24 | "size":18, 25 | "color": "#000000", 26 | "lineSpacing":-4, 27 | "paragraphSpacing":-1 28 | 29 | }, 30 | 31 | "title1": { 32 | "color": "#743101", 33 | "size": 24, 34 | "font": "Noteworthy-Bold", 35 | "underlineStyle":1 36 | }, 37 | 38 | "title2": { 39 | "color": "#743101", 40 | "size": 22, 41 | "font": "Noteworthy-Bold" 42 | }, 43 | 44 | "title3": { 45 | "color": "#743101", 46 | "size": 20, 47 | "font": "Noteworthy-Bold" 48 | }, 49 | 50 | "title-mark1": { 51 | "color": "#40000000", 52 | "size": 24, 53 | "font": "AvenirNext-DemiBold", 54 | "lineSpacing":-4, 55 | "paragraphSpacing":-1 56 | }, 57 | 58 | "title-mark2": { 59 | "color": "#40000000", 60 | "size": 22, 61 | "font": "AvenirNext-DemiBold", 62 | "lineSpacing":-4, 63 | "paragraphSpacing":-1 64 | }, 65 | 66 | "title-mark3": { 67 | "color": "#40000000", 68 | "size": 20, 69 | "font": "AvenirNext-DemiBold", 70 | "lineSpacing":-4, 71 | "paragraphSpacing":-1 72 | }, 73 | 74 | "bold": { 75 | "font": "Noteworthy-Bold", 76 | "size":16, 77 | 78 | "type": "bold" 79 | }, 80 | 81 | "bold-left-mark": { 82 | "color": "#40000000", 83 | "size": 10, 84 | "lineSpacing":-4, 85 | "paragraphSpacing":-1, 86 | }, 87 | 88 | "bold-right-mark": { 89 | "color": "#40000000", 90 | "size": 14, 91 | }, 92 | 93 | "italic": { 94 | "font": "AvenirNextCondensed-MediumItalic", 95 | "type": "italic", 96 | "lineSpacing":-4, 97 | "paragraphSpacing":-1 98 | }, 99 | 100 | "italic-left-mark": { 101 | "color": "#40000000" 102 | }, 103 | 104 | "italic-right-mark": { 105 | "color": "#40000000" 106 | }, 107 | 108 | "boldItalic": { 109 | "type": "AvenirNextCondensed-BoldItalic" 110 | }, 111 | 112 | "boldItalic-left-mark": { 113 | "color": "#40000000" 114 | }, 115 | 116 | "boldItalic-right-mark": { 117 | "color": "#40000000" 118 | }, 119 | 120 | "code": { 121 | "font": "AmericanTypewriter-Condensed", 122 | "color": "#AA44AA" 123 | }, 124 | 125 | "code-left-backtick": { 126 | "color": "#660091f8", 127 | "lineSpacing":-4, 128 | "paragraphSpacing":-1 129 | }, 130 | 131 | "code-right-backtick": { 132 | "color": "#660091f8" 133 | }, 134 | 135 | "checked": { 136 | "color": "#66333333", 137 | "headIndent": 33, 138 | "lineSpacing":-4, 139 | "paragraphSpacing":-1 140 | }, 141 | 142 | "todo": { 143 | "font": "noteplanstate", 144 | "color": "#d87001", 145 | "headIndent": 33, 146 | "size": 16, 147 | "lineSpacing":-4, 148 | "paragraphSpacing":-1 149 | 150 | }, 151 | 152 | "checked-todo-characters": { 153 | "font": "noteplanstate", 154 | "headIndent": 33, 155 | "size": 16, 156 | "lineSpacing":-4, 157 | "paragraphSpacing":-1 158 | }, 159 | 160 | "special-char": { 161 | "font": "Menlo-Regular" 162 | }, 163 | 164 | "tabbed": { 165 | "headIndent": 23, 166 | "lineSpacing":-4, 167 | "paragraphSpacing":-1 168 | }, 169 | 170 | "quote-mark": { 171 | "color": "#800091f8", 172 | "font": "noteplanstate", 173 | "headIndent": 33, 174 | "size": 16, 175 | "lineSpacing":-4, 176 | "paragraphSpacing":-1 177 | }, 178 | 179 | "quote-content": { 180 | "color": "#333333", 181 | "type": "italic", 182 | "headIndent": 33 183 | }, 184 | 185 | "bodini-ornaments-mark": { 186 | "regex": "(\\\\)(.)", 187 | "matchPosition": 1, 188 | "font": "courier", 189 | "isHiddenWithoutCursor": true, 190 | "isRevealOnCursorRange": true, 191 | }, 192 | 193 | "bodini-ornaments": { 194 | "regex": "(\\\\)(.)", 195 | "matchPosition": 2, 196 | "font": "BodoniOrnamentsITCTT", 197 | "size": 28, 198 | "isHiddenWithoutCursor": false, 199 | "isRevealOnCursorRange": true 200 | }, 201 | 202 | "schedule-to-date-link": { 203 | "backgroundColor":"#10000000", 204 | }, 205 | 206 | "done-date": { 207 | 208 | }, 209 | 210 | "schedule-from-date-link": { 211 | "backgroundColor":"#10000000", 212 | }, 213 | 214 | 215 | "note-title-link": { 216 | "backgroundColor":"#10000000", 217 | }, 218 | 219 | "hashtag": { 220 | 221 | }, 222 | 223 | "attag": { 224 | 225 | }, 226 | "phonenumber": { 227 | 228 | } 229 | } 230 | } 231 | -------------------------------------------------------------------------------- /bin/Outrun.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "Outrun", 3 | "style": "Dark", 4 | "author": { 5 | "name": "Brad Rokosz", 6 | "email": "hello@noteplan.co" 7 | }, 8 | "editor": { 9 | "backgroundColor": "#0c0a20", 10 | "altBackgroundColor": "#0c0a20", 11 | "tintColor": "#FF0081", 12 | "tintColor2": "#D86BFF", 13 | "textColor": "#F8F8F2", 14 | "toolbarBackgroundColor": "#0c0a20", 15 | "toolbarIconColor": "#42C6FF", 16 | "menuItemColor": "#ff9b50", 17 | "shouldOverwriteFont": false 18 | }, 19 | "styles": { 20 | "body": { 21 | "font": "GillSans-Light", 22 | "size": 16, 23 | "color": "#F8F8F2" 24 | }, 25 | "title1": { 26 | "color": "#42c6ff", 27 | "font": "GillSans-Light", 28 | "size": 34 29 | }, 30 | "title2": { 31 | "color": "#ff2afc", 32 | "font": "GillSans-SemiBold", 33 | "size": 26 34 | }, 35 | "title3": { 36 | "color": "#D86BFF", 37 | "font": "GillSans-SemiBold", 38 | "size": 20 39 | }, 40 | "title4": { 41 | "color": "#ffd319", 42 | "font": "GillSans-SemiBold", 43 | "size": 18 44 | }, 45 | "title-mark1": { 46 | "color": "#42c6ff", 47 | "size": 34, 48 | "font": "GillSans-Light" 49 | }, 50 | "title-mark2": { 51 | "color": "#ff2afc", 52 | "size": 26, 53 | "font": "GillSans-SemiBold" 54 | }, 55 | "title-mark3": { 56 | "color": "#D86BFF", 57 | "size": 20, 58 | "font": "GillSans-SemiBold" 59 | }, 60 | "title-mark4": { 61 | "color": "#ffd319", 62 | "size": 18, 63 | "font": "GillSans-SemiBold" 64 | }, 65 | "bold": { 66 | "color": "#42c6ff", 67 | "size": 16, 68 | "font": "GillSans-SemiBold" 69 | }, 70 | "bold-left-mark": { 71 | "color": "#42c6ff" 72 | }, 73 | "bold-right-mark": { 74 | "color": "#42c6ff" 75 | }, 76 | "italic": { 77 | "color": "#ff9b50", 78 | "size": 16, 79 | "font": "GillSans-Italic" 80 | }, 81 | "italic-left-mark": { 82 | "color": "#ff9b50" 83 | }, 84 | "italic-right-mark": { 85 | "color": "#ff9b50" 86 | }, 87 | "boldItalic": { 88 | "color": "#42C6FF", 89 | "size": 16, 90 | "font": "GillSans-BoldItalic" 91 | }, 92 | "boldItalic-left-mark": { 93 | "color": "#42C6FF" 94 | }, 95 | "boldItalic-right-mark": { 96 | "color": "#42C6FF" 97 | }, 98 | "code": { 99 | "font": "Monaco", 100 | "color": "#A3D6E0", 101 | "backgroundColor": "#24264F", 102 | "size": 16 103 | }, 104 | "checked": { 105 | "color": "#546A90", 106 | "headIndent": 33 107 | }, 108 | "todo": { 109 | "font": "noteplanstate", 110 | "color": "#D86BFF", 111 | "headIndent": 33, 112 | "size": 16 113 | }, 114 | "checked-todo-characters": { 115 | "font": "noteplanstate", 116 | "headIndent": 33, 117 | "size": 16 118 | }, 119 | "special-char": { 120 | "color": "#F8F8F2", 121 | "font": "Monaco" 122 | }, 123 | "tabbed": { 124 | "headIndent": 43 125 | }, 126 | "quote-mark": { 127 | "color": "#7984D1", 128 | "font": "noteplanstate", 129 | "headIndent": 33, 130 | "size": 24 131 | }, 132 | "quote-content": { 133 | "color": "#ffd319", 134 | "type": "italic", 135 | "headIndent": 33, 136 | "font": "GillSans-Italic", 137 | "size": 24 138 | }, 139 | "link": { 140 | "backgroundColor": "#0c0a20" 141 | }, 142 | "schedule-to-date-link": {}, 143 | "done-date": { 144 | "color": "#546A90", 145 | }, 146 | "schedule-from-date-link": {}, 147 | "note-title-link": {}, 148 | "hashtag": {}, 149 | "attag": {}, 150 | "phonenumber": {}, 151 | "highlighted": { 152 | "regex": "(::)([^:]{1,})(::)", 153 | "matchPosition": 2, 154 | "font": "GillSans-SemiBold", 155 | "isRevealOnCursorRange": true, 156 | "color": "#24264F", 157 | "backgroundColor": "#F4B80C" 158 | }, 159 | "highlighted-left-colon": { 160 | "regex": "(::)([^:]{1,})(::)", 161 | "matchPosition": 1, 162 | "isMarkdownCharacter": true, 163 | "isHiddenWithoutCursor": true, 164 | "isRevealOnCursorRange": true, 165 | "color": "#F4B80C" 166 | }, 167 | "highlighted-right-colon": { 168 | "regex": "(::)([^:]{1,})(::)", 169 | "matchPosition": 3, 170 | "isMarkdownCharacter": true, 171 | "isHiddenWithoutCursor": true, 172 | "isRevealOnCursorRange": true, 173 | "color": "#F4B80C" 174 | }, 175 | "code-left-backtick": { 176 | "color": "#546A90" 177 | }, 178 | "code-right-backtick": { 179 | "color": "#546A90" 180 | }, 181 | "strikethrough": { 182 | "regex": "(~~)([^~]{1,})(~~)", 183 | "matchPosition": 2, 184 | "strikethroughStyle": 1, 185 | "color": "#546A90", 186 | "isRevealOnCursorRange": true 187 | }, 188 | "strikethrough-left-tilde": { 189 | "regex": "(~~)([^~]{1,})(~~)", 190 | "matchPosition": 1, 191 | "isMarkdownCharacter": true, 192 | "isHiddenWithoutCursor": true, 193 | "color": "#546A90", 194 | "isRevealOnCursorRange": true 195 | }, 196 | "strikethrough-right-tilde": { 197 | "regex": "(~~)([^~]{1,})(~~)", 198 | "matchPosition": 3, 199 | "isMarkdownCharacter": true, 200 | "color": "#546A90", 201 | "isHiddenWithoutCursor": true, 202 | "isRevealOnCursorRange": true 203 | }, 204 | "flagged-1": { 205 | "regex": "(^|\\v)(\\h*(\\*|-)\\h*(\\[ \\]\\h+|\\h+)\\!{3}\\h+.*)($|\\v)", 206 | "matchPosition": 2, 207 | "backgroundColor": "#F4225A", 208 | "color": "#0c0a20", 209 | "headIndent": 33 210 | }, 211 | "flagged-2": { 212 | "regex": "(^|\\v)(\\h*(\\*|-)\\h*(\\[ \\]\\h+|\\h+)\\!{2}\\h+.*)($|\\v)", 213 | "matchPosition": 2, 214 | "backgroundColor": "#ff9b50", 215 | "color": "#0c0a20", 216 | "headIndent": 33 217 | }, 218 | "flagged-3": { 219 | "regex": "(^|\\v)(\\h*(\\*|-)\\h*(\\[ \\]\\h+|\\h+)\\!{1}\\h+.*)($|\\v)", 220 | "matchPosition": 2, 221 | "backgroundColor": "#42c6ff", 222 | "color": "#0c0a20", 223 | "headIndent": 33 224 | }, 225 | } 226 | } -------------------------------------------------------------------------------- /bin/Panda Dark.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "Panda Dark", 3 | "style": "Dark", 4 | "author": { 5 | "name": "Panda", 6 | "email": "hello@noteplan.co" 7 | }, 8 | "editor": { 9 | "backgroundColor": "#1D1E1F", 10 | "altBackgroundColor": "#2E2F30", 11 | "tintColor": "#44a2e5", 12 | "tintColor2": "#44a2e5", 13 | "textColor": "#DFE0E0", 14 | "toolbarBackgroundColor": "#2E2F30", 15 | "toolbarIconColor": "#44a2e5", 16 | "menuItemColor": "#44a2e5", 17 | "shouldOverwriteFont": false 18 | }, 19 | "styles": { 20 | "body": { 21 | "font": "AvenirNext-Regular", 22 | "size": 16, 23 | "color": "#DFE0E0" 24 | }, 25 | "title1": { 26 | "font": "AvenirNext-DemiBold", 27 | "color": "#DFE0E0", 28 | "size": 28 29 | }, 30 | "title2": { 31 | "font": "AvenirNext-DemiBold", 32 | "color": "#DFE0E0", 33 | "size": 24 34 | }, 35 | "title3": { 36 | "font": "AvenirNext-DemiBold", 37 | "color": "#DFE0E0", 38 | "size": 20 39 | }, 40 | "title-mark1": { 41 | "color": "#40DFE0E0", 42 | "size": 28, 43 | "font": "AvenirNext-DemiBold" 44 | }, 45 | "title-mark2": { 46 | "color": "#40DFE0E0", 47 | "size": 24, 48 | "font": "AvenirNext-DemiBold" 49 | }, 50 | "title-mark3": { 51 | "color": "#40DFE0E0", 52 | "size": 20, 53 | "font": "AvenirNext-DemiBold" 54 | }, 55 | "bold": { 56 | "font": "AvenirNext-DemiBold", 57 | "size": 16 58 | }, 59 | "bold-left-mark": { 60 | "color": "#40000000" 61 | }, 62 | "bold-right-mark": { 63 | "color": "#40000000" 64 | }, 65 | "italic": { 66 | "font": "AvenirNext-Italic", 67 | "size": 16 68 | }, 69 | "italic-left-mark": { 70 | "color": "#40000000" 71 | }, 72 | "italic-right-mark": { 73 | "color": "#40000000" 74 | }, 75 | "boldItalic": { 76 | "font": "AvenirNext-BoldItalic", 77 | "size": 16 78 | }, 79 | "boldItalic-left-mark": { 80 | "color": "#40000000" 81 | }, 82 | "boldItalic-right-mark": { 83 | "color": "#40000000" 84 | }, 85 | "code": { 86 | "font": "Menlo-Regular", 87 | "backgroundColor": "#2E2F30", 88 | "size": 15 89 | }, 90 | "code-left-backtick": { 91 | "color": "#009155" 92 | }, 93 | "code-right-backtick": { 94 | "color": "#009155" 95 | }, 96 | "checked": { 97 | "color": "#A2A3A4", 98 | "headIndent": 33 99 | }, 100 | "todo": { 101 | "font": "noteplanstate", 102 | "color": "#44a2e5", 103 | "headIndent": 33, 104 | "size": 16 105 | }, 106 | "checked-todo-characters": { 107 | "font": "noteplanstate", 108 | "headIndent": 33, 109 | "size": 16 110 | }, 111 | "special-char": { 112 | "font": "Menlo-Regular" 113 | }, 114 | "tabbed": { 115 | "headIndent": 43 116 | }, 117 | "quote-mark": { 118 | "color": "#44a2e5", 119 | "font": "noteplanstate", 120 | "headIndent": 33, 121 | "size": 16 122 | }, 123 | "quote-content": { 124 | "color": "#DFE0E0", 125 | "type": "italic", 126 | "headIndent": 33 127 | }, 128 | "link": {}, 129 | "schedule-to-date-link": {}, 130 | "done-date": {}, 131 | "schedule-from-date-link": {}, 132 | "note-title-link": {}, 133 | "hashtag": {}, 134 | "attag": {}, 135 | "phonenumber": {}, 136 | "highlighted": { 137 | "regex": "(::)([^:]{1,})(::)", 138 | "matchPosition": 2, 139 | "isRevealOnCursorRange": true, 140 | "backgroundColor": "#3175a8" 141 | }, 142 | "highlighted-left-colon": { 143 | "regex": "(::)([^:]{1,})(::)", 144 | "matchPosition": 1, 145 | "isMarkdownCharacter": true, 146 | "isHiddenWithoutCursor": true, 147 | "isRevealOnCursorRange": true 148 | }, 149 | "highlighted-right-colon": { 150 | "regex": "(::)([^:]{1,})(::)", 151 | "matchPosition": 3, 152 | "isMarkdownCharacter": true, 153 | "isHiddenWithoutCursor": true, 154 | "isRevealOnCursorRange": true 155 | }, 156 | "strikethrough": { 157 | "regex": "(~~)([^~]{1,})(~~)", 158 | "matchPosition": 2, 159 | "strikethroughStyle": 1, 160 | "color": "#A2A3A4", 161 | "isRevealOnCursorRange": true 162 | }, 163 | "strikethrough-left-tilde": { 164 | "regex": "(~~)([^~]{1,})(~~)", 165 | "matchPosition": 1, 166 | "isMarkdownCharacter": true, 167 | "isHiddenWithoutCursor": true, 168 | "color": "#d9d9d9", 169 | "isRevealOnCursorRange": true 170 | }, 171 | "strikethrough-right-tilde": { 172 | "regex": "(~~)([^~]{1,})(~~)", 173 | "matchPosition": 3, 174 | "isMarkdownCharacter": true, 175 | "color": "#d9d9d9", 176 | "isHiddenWithoutCursor": true, 177 | "isRevealOnCursorRange": true 178 | }, 179 | } 180 | } -------------------------------------------------------------------------------- /bin/Panda.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "Panda", 3 | "style": "Light", 4 | "author": { 5 | "name": "Panda", 6 | "email": "hello@noteplan.co" 7 | }, 8 | "editor": { 9 | "backgroundColor": "#ffffff", 10 | "altBackgroundColor": "#FAFFFF", 11 | "tintColor": "#DD4C4F", 12 | "tintColor2": "#DD4C4F", 13 | "textColor": "#333333", 14 | "toolbarBackgroundColor": "#F3F5F7", 15 | "toolbarIconColor": "#dd4c4f", 16 | "menuItemColor": "#dd4c4f", 17 | "shouldOverwriteFont": false 18 | }, 19 | "styles": { 20 | "body": { 21 | "font": "AvenirNext-Regular", 22 | "size": 16, 23 | "color": "#444444" 24 | }, 25 | "title1": { 26 | "font": "AvenirNext-DemiBold", 27 | "color": "#000000", 28 | "size": 28 29 | }, 30 | "title2": { 31 | "font": "AvenirNext-DemiBold", 32 | "color": "#000000", 33 | "size": 24 34 | }, 35 | "title3": { 36 | "font": "AvenirNext-DemiBold", 37 | "color": "#000000", 38 | "size": 20 39 | }, 40 | "title-mark1": { 41 | "color": "#40000000", 42 | "size": 28, 43 | "font": "AvenirNext-DemiBold" 44 | }, 45 | "title-mark2": { 46 | "color": "#40000000", 47 | "size": 24, 48 | "font": "AvenirNext-DemiBold" 49 | }, 50 | "title-mark3": { 51 | "color": "#40000000", 52 | "size": 20, 53 | "font": "AvenirNext-DemiBold" 54 | }, 55 | "bold": { 56 | "font": "AvenirNext-DemiBold", 57 | "size": 16 58 | }, 59 | "bold-left-mark": { 60 | "color": "#40000000" 61 | }, 62 | "bold-right-mark": { 63 | "color": "#40000000" 64 | }, 65 | "italic": { 66 | "font": "AvenirNext-Italic", 67 | "size": 16 68 | }, 69 | "italic-left-mark": { 70 | "color": "#40000000" 71 | }, 72 | "italic-right-mark": { 73 | "color": "#40000000" 74 | }, 75 | "boldItalic": { 76 | "font": "AvenirNext-BoldItalic", 77 | "size": 16 78 | }, 79 | "boldItalic-left-mark": { 80 | "color": "#40000000" 81 | }, 82 | "boldItalic-right-mark": { 83 | "color": "#40000000" 84 | }, 85 | "code": { 86 | "font": "Menlo-Regular", 87 | "backgroundColor": "#F3F5F7", 88 | "size": 15 89 | }, 90 | "code-left-backtick": { 91 | "color": "#009155" 92 | }, 93 | "code-right-backtick": { 94 | "color": "#009155" 95 | }, 96 | "checked": { 97 | "color": "#888888", 98 | "headIndent": 33 99 | }, 100 | "todo": { 101 | "font": "noteplanstate", 102 | "color": "#DD4C4F", 103 | "headIndent": 33, 104 | "size": 16 105 | }, 106 | "checked-todo-characters": { 107 | "font": "noteplanstate", 108 | "headIndent": 33, 109 | "size": 16 110 | }, 111 | "special-char": { 112 | "font": "Menlo-Regular" 113 | }, 114 | "tabbed": { 115 | "headIndent": 43 116 | }, 117 | "quote-mark": { 118 | "color": "#dd4c4f", 119 | "font": "noteplanstate", 120 | "headIndent": 33, 121 | "size": 16 122 | }, 123 | "quote-content": { 124 | "color": "#333333", 125 | "type": "italic", 126 | "headIndent": 33 127 | }, 128 | "link": {}, 129 | "schedule-to-date-link": {}, 130 | "done-date": {}, 131 | "schedule-from-date-link": {}, 132 | "note-title-link": {}, 133 | "hashtag": {}, 134 | "attag": {}, 135 | "phonenumber": {}, 136 | "highlighted": { 137 | "regex": "(::)([^:]{1,})(::)", 138 | "matchPosition": 2, 139 | "isRevealOnCursorRange": true, 140 | "backgroundColor": "#D3FFA4" 141 | }, 142 | "highlighted-left-colon": { 143 | "regex": "(::)([^:]{1,})(::)", 144 | "matchPosition": 1, 145 | "isMarkdownCharacter": true, 146 | "isHiddenWithoutCursor": true, 147 | "isRevealOnCursorRange": true 148 | }, 149 | "highlighted-right-colon": { 150 | "regex": "(::)([^:]{1,})(::)", 151 | "matchPosition": 3, 152 | "isMarkdownCharacter": true, 153 | "isHiddenWithoutCursor": true, 154 | "isRevealOnCursorRange": true 155 | }, 156 | "strikethrough": { 157 | "regex": "(~~)([^~]{1,})(~~)", 158 | "matchPosition": 2, 159 | "strikethroughStyle": 1, 160 | "color": "#888888", 161 | "isRevealOnCursorRange": true 162 | }, 163 | "strikethrough-left-tilde": { 164 | "regex": "(~~)([^~]{1,})(~~)", 165 | "matchPosition": 1, 166 | "isMarkdownCharacter": true, 167 | "isHiddenWithoutCursor": true, 168 | "color": "#d9d9d9", 169 | "isRevealOnCursorRange": true 170 | }, 171 | "strikethrough-right-tilde": { 172 | "regex": "(~~)([^~]{1,})(~~)", 173 | "matchPosition": 3, 174 | "isMarkdownCharacter": true, 175 | "color": "#d9d9d9", 176 | "isHiddenWithoutCursor": true, 177 | "isRevealOnCursorRange": true 178 | }, 179 | } 180 | } -------------------------------------------------------------------------------- /bin/Purple Heart.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "Purple Heart", 3 | "style": "Dark", 4 | "author": { 5 | "name": "dntme17", 6 | "email": "dntme17@protonmail.com" 7 | }, 8 | 9 | "editor": { 10 | "backgroundColor": "#3b2a38", 11 | "altBackgroundColor": "#5c4157", 12 | "tintColor": "#ffbf6d", 13 | "tintColor2": "#62d8ff", 14 | "textColor":"#f4f4f1", 15 | "toolbarBackgroundColor": "#5c4157", 16 | "toolbarIconColor": "#222e33", 17 | "menuItemColor": "#222e33", 18 | "shouldOverwriteFont": true 19 | }, 20 | 21 | "styles": { 22 | 23 | "body": { 24 | "font": "AvenirNext-Regular", 25 | "size": 16, 26 | "color": "#f4f4f1" 27 | }, 28 | 29 | "title1": { 30 | "color": "#c572ec", 31 | "size": 28, 32 | }, 33 | 34 | "title2": { 35 | "color": "#c572ec", 36 | "size": 24 37 | }, 38 | 39 | "title3": { 40 | "regex": "^\\h*(### )(.*)", 41 | "color": "#c572ec", 42 | "size": 20, 43 | }, 44 | 45 | "title4": { 46 | "regex": "^\\h*(####+ )(.*)", 47 | "matchPosition": 2, 48 | "color": "#c572ec", 49 | "size": 17, 50 | "isRevealOnCursorRange": true, 51 | }, 52 | 53 | "title-mark1-custom": { 54 | "regex": "^\\h*(# )(.*)", 55 | "matchPosition": 1, 56 | "color": "#c572ec", 57 | "size": 28, 58 | "font": "AvenirNext-DemiBold", 59 | }, 60 | 61 | "title-mark2-custom": { 62 | "regex": "^\\h*(## )(.*)", 63 | "matchPosition": 1, 64 | "color": "#c572ec", 65 | "size": 24, 66 | "font": "AvenirNext-DemiBold" 67 | }, 68 | 69 | "title-mark3-custom": { 70 | "regex": "^\\h*(### )(.*)", 71 | "matchPosition": 1, 72 | "color": "#c572ec", 73 | "size": 20, 74 | "font": "AvenirNext-DemiBold", 75 | "isHiddenWithoutCursor": false, 76 | "isRevealOnCursorRange": false, 77 | }, 78 | 79 | "title-mark4-custom": { 80 | "regex": "^\\h*(####+ )(.*)", 81 | "matchPosition": 1, 82 | "color": "#c572ec", 83 | "size": 17, 84 | "font": "AvenirNext-DemiBold", 85 | }, 86 | 87 | "bold": { 88 | "type": "bold", 89 | }, 90 | 91 | "bold-left-mark-custom": { 92 | "regex": "(^|[\\W_])(?:(?!\\1)|(?=^))((\\*|_)\\3)(?=\\S)(.*?\\S)(\\3\\3)(?!\\2)(?=[\\W_]|$)", 93 | "matchPosition": 2, 94 | "color": "#e144d4", 95 | }, 96 | 97 | "bold-right-mark-custom": { 98 | "regex": "(^|[\\W_])(?:(?!\\1)|(?=^))(\\*|_)\\2(?=\\S)(.*?\\S)(\\2\\2)(?!\\2)(?=[\\W_]|$)", 99 | "matchPosition": 4, 100 | "color": "#e144d4", 101 | }, 102 | 103 | "italic": { 104 | "type": "italic" 105 | }, 106 | 107 | "italic-left-mark": { 108 | "regex": "(^|[\\W_])(?:(?!\\1)|(?=^))(\\*|_)(?=\\S)((?:(?!\\2).)*?\\S)(\\2)(?!\\2)(?=[\\W_]|$)", 109 | "matchPosition": 2, 110 | "color": "#e144d4", 111 | }, 112 | 113 | "italic-right-mark": { 114 | "regex": "(^|[\\W_])(?:(?!\\1)|(?=^))(\\*|_)(?=\\S)((?:(?!\\2).)*?\\S)(\\2)(?!\\2)(?=[\\W_]|$)", 115 | "matchPosition": 4, 116 | "color": "#e144d4", 117 | }, 118 | 119 | "boldItalic": { 120 | "type": "bolditalic" 121 | }, 122 | 123 | "boldItalic-left-mark": { 124 | "color": "#e144d4", 125 | }, 126 | 127 | "boldItalic-right-mark": { 128 | "color": "#e144d4", 129 | }, 130 | 131 | "code": { 132 | "font": "Menlo-Regular", 133 | "color": "#cb75f4", 134 | "backgroundColor": "#56334e", 135 | "size": 15 136 | }, 137 | 138 | "code-left-backtick-custom": { 139 | "regex": "(`)([^`]{1,})(`)", 140 | "matchPosition": 1, 141 | "type": "bold", 142 | "color": "#e144d4", 143 | "font": "Menlo-Regular", 144 | }, 145 | 146 | "code-right-backtick-custom": { 147 | "regex": "(`)([^`]{1,})(`)", 148 | "matchPosition": 3, 149 | "type": "bold", 150 | "color": "#e144d4", 151 | "font": "Menlo-Regular", 152 | }, 153 | 154 | "checked": { 155 | "regex": "(^\\h*[\\*\\-]{1} |^\\h*[0-9]+[\\.\\)] )(\\[x\\] )(.*)", 156 | "matchPosition": 0, 157 | "color": "#747abc", 158 | "headIndent": 33 159 | }, 160 | 161 | "checked-canceled": { 162 | "regex": "(^\\h*[\\*\\-]{1} |^\\h*[0-9]+[\\.\\)] )(\\[\\-\\] )(.*)", 163 | "matchPosition": 0, 164 | "color": "#747abc", 165 | "headIndent": 33, 166 | "strikethroughStyle": 1 167 | }, 168 | 169 | "checked-scheduled": { 170 | "regex": "(^\\h*[\\*\\-]{1} |^\\h*[0-9]+[\\.\\)] )(\\[\\>\\] )(.*)", 171 | "matchPosition": 0, 172 | "color": "#b0b8cc", 173 | "headIndent": 33 174 | }, 175 | 176 | "todo": { 177 | "font": "noteplanstate", 178 | "color": "#ff215c", 179 | "headIndent": 33, 180 | "size": 16 181 | }, 182 | 183 | "checked-todo-characters": { 184 | "font": "noteplanstate", 185 | "headIndent": 33, 186 | "size": 16 187 | }, 188 | 189 | "special-char": { 190 | "font": "Menlo-Regular" 191 | }, 192 | 193 | "tabbed": { 194 | "headIndent": 43 195 | }, 196 | 197 | "quote-mark": { 198 | "color": "#ff215c", 199 | "font": "noteplanstate", 200 | "headIndent": 33, 201 | "size": 16 202 | }, 203 | 204 | "quote-content": { 205 | "color": "#b0b8cc", 206 | "type": "italic", 207 | "headIndent": 33 208 | }, 209 | 210 | "link": {}, 211 | 212 | "schedule-to-date-link": {}, 213 | 214 | "schedule-from-date-link": {}, 215 | 216 | "done-date": {}, 217 | 218 | "note-title-link": {}, 219 | 220 | "hashtag": {}, 221 | 222 | "attag": {}, 223 | 224 | "phonenumber": {}, 225 | 226 | "highlighted": { 227 | "regex": "(::)([^:]{1,})(::)", 228 | "matchPosition": 0, 229 | "backgroundColor": "#4fae00" 230 | }, 231 | 232 | "strikethrough": { 233 | "regex": "(~~)([^:]{1,})(~~)", 234 | "matchPosition": 2, 235 | "strikethroughStyle": 1, 236 | "strikethroughColor": "#b0b8cc", 237 | "color": "#b0b8cc", 238 | }, 239 | 240 | "hot": { 241 | "regex": "(^|\\v)\\h*(\\*|-)\\h*\\[ \\]\\h+(.*?#hot.*)($|\\v)", 242 | "matchPosition": 3, 243 | "backgroundColor": "#008cca", 244 | }, 245 | } 246 | } -------------------------------------------------------------------------------- /bin/Rose Pine Dawn.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "Rose Pine Dawn", 3 | "style": "Light", 4 | "author": { 5 | "name": "Marcos Souza", 6 | "email": "me@msouza.tech" 7 | }, 8 | 9 | "editor": { 10 | "backgroundColor": "#faf4ed", 11 | "altBackgroundColor": "#fffaf3", 12 | "tintColor": "#907aa9", 13 | "tintColor2": "#286983", 14 | "textColor": "#575279", 15 | "toolbarBackgroundColor": "#fffaf3", 16 | "toolbarIconColor": "#797593", 17 | "menuItemColor": "#797593", 18 | "timeBlockColor": "#d7827e", 19 | "shouldOverwriteFont": true 20 | }, 21 | 22 | "styles": { 23 | "body": { 24 | "font": "AvenirNext-Regular", 25 | "size": 16, 26 | "color": "#575279" 27 | }, 28 | 29 | "title1": { 30 | "color": "#56949f", 31 | "size": 28 32 | }, 33 | 34 | "title2": { 35 | "color": "#56949f", 36 | "size": 24 37 | }, 38 | 39 | "title3": { 40 | "color": "#56949f", 41 | "size": 20 42 | }, 43 | 44 | "working-on": { 45 | "backgroundColor": "#6FEEF1ED", 46 | "color": "#56949f" 47 | }, 48 | 49 | "flagged-1": { 50 | "backgroundColor": "#22FCF2E4", 51 | "color": "#ea9d34" 52 | }, 53 | 54 | "flagged-2": { 55 | "backgroundColor": "#40F7EDEA", 56 | "color": "#b4637a" 57 | }, 58 | 59 | "flagged-3": { 60 | "backgroundColor": "#30FBF0EA", 61 | "color": "#d7827e" 62 | }, 63 | 64 | "title-mark1": { 65 | "color": "#456949f0", 66 | "size": 28 67 | }, 68 | 69 | "title-mark2": { 70 | "color": "#456949f0", 71 | "size": 24 72 | }, 73 | 74 | "title-mark3": { 75 | "color": "#456949f0", 76 | "size": 20 77 | }, 78 | 79 | "title4": { 80 | "color": "#56949f", 81 | "size": 16, 82 | "underlineStyle": 1 83 | }, 84 | 85 | "title-mark4": { 86 | "color": "#456949f0", 87 | "size": 18, 88 | "font": "AvenirNext-DemiBold" 89 | }, 90 | 91 | "bold": { 92 | "type": "bold" 93 | }, 94 | 95 | "bold-left-mark": { 96 | "color": "#456949f0" 97 | }, 98 | 99 | "bold-right-mark": { 100 | "color": "#456949f0" 101 | }, 102 | 103 | "italic": { 104 | "type": "italic" 105 | }, 106 | 107 | "italic-left-mark": { 108 | "color": "#456949f0" 109 | }, 110 | 111 | "italic-right-mark": { 112 | "color": "#456949f0" 113 | }, 114 | 115 | "boldItalic": { 116 | "type": "bolditalic" 117 | }, 118 | 119 | "boldItalic-left-mark": { 120 | "color": "#456949f0" 121 | }, 122 | 123 | "boldItalic-right-mark": { 124 | "color": "#456949f0" 125 | }, 126 | 127 | "code": { 128 | "font": "Menlo-Regular", 129 | "color": "#907aa9", 130 | "size": 15 131 | }, 132 | 133 | "code-left-backtick": { 134 | "color": "#66907aa9" 135 | }, 136 | 137 | "code-right-backtick": { 138 | "color": "#66907aa9" 139 | }, 140 | 141 | "checked": { 142 | "regex": "(^\\h*[\\*\\-\\+]{1} |^\\h*[0-9]+[\\.\\)] )(\\[x\\] )(.*)", 143 | "matchPosition": 0, 144 | "color": "#6656949f", 145 | "headIndent": 33 146 | }, 147 | 148 | "checked-canceled": { 149 | "regex": "(^\\h*[\\*\\-\\+]{1} |^\\h*[0-9]+[\\.\\)] )(\\[\\-\\] )(.*)", 150 | "matchPosition": 0, 151 | 152 | "color": "#44b4637a", 153 | "strikethroughStyle": 1, 154 | "headIndent": 33 155 | }, 156 | 157 | "checked-scheduled": { 158 | "regex": "(^\\h*[\\*\\-\\+]{1} |^\\h*[0-9]+[\\.\\)] )(\\[\\>\\] )(.*)", 159 | "matchPosition": 0, 160 | 161 | "color": "#88ea9d34", 162 | "headIndent": 33 163 | }, 164 | 165 | "todo": { 166 | "color": "#ea9d34", 167 | "headIndent": 33, 168 | "size": 16 169 | }, 170 | 171 | "checked-todo-characters": { 172 | "headIndent": 33, 173 | "size": 16 174 | }, 175 | 176 | "tabbed": { 177 | "headIndent": 43 178 | }, 179 | 180 | "quote-mark": { 181 | "color": "#80907aa9", 182 | "headIndent": 33, 183 | "size": 16 184 | }, 185 | 186 | "quote-content": { 187 | "color": "#CC575279", 188 | "type": "italic", 189 | "headIndent": 33 190 | }, 191 | 192 | "link": {}, 193 | 194 | "schedule-to-date-link": {}, 195 | 196 | "done-date": {}, 197 | 198 | "schedule-from-date-link": {}, 199 | 200 | "note-title-link": {}, 201 | 202 | "hashtag": { 203 | "backgroundColor": "#40286983" 204 | }, 205 | 206 | "attag": { 207 | "backgroundColor": "#40286983" 208 | }, 209 | 210 | "phonenumber": {}, 211 | 212 | "highlighted": { 213 | "backgroundColor": "#6656949f" 214 | }, 215 | 216 | "highlighted-left-marker": { 217 | "color": "#4056949f" 218 | }, 219 | 220 | "highlighted-right-marker": { 221 | "color": "#4056949f" 222 | }, 223 | 224 | "strikethrough": { 225 | "color": "#99d7827e", 226 | "strikethroughColor": "#DDd7827e" 227 | }, 228 | 229 | "strikethrough-left-tilde": { 230 | "color": "#44575279" 231 | }, 232 | 233 | "strikethrough-right-tilde": { 234 | "color": "#44575279" 235 | }, 236 | 237 | "underline": { 238 | "underlineStyle": 2, 239 | "underlineColor": "#ea9d34" 240 | }, 241 | 242 | "underline-left-tilde": { 243 | "color": "#44575279" 244 | }, 245 | 246 | "underline-right-tilde": { 247 | "color": "#44575279" 248 | } 249 | } 250 | } 251 | -------------------------------------------------------------------------------- /bin/Rose Pine.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "Rose Pine", 3 | "style": "Dark", 4 | "author": { 5 | "name": "Marcos Souza", 6 | "email": "me@msouza.tech" 7 | }, 8 | 9 | "editor": { 10 | "backgroundColor": "#191724", 11 | "altBackgroundColor": "#1f1d2e", 12 | "tintColor": "#c4a7e7", 13 | "tintColor2": "#31748f", 14 | "textColor": "#e0def4", 15 | "toolbarBackgroundColor": "#342F33", 16 | "toolbarIconColor": "#908caa", 17 | "menuItemColor": "#908caa", 18 | "timeBlockColor": "#ebbcba", 19 | "shouldOverwriteFont": true 20 | }, 21 | 22 | "styles": { 23 | "body": { 24 | "font": "AvenirNext-Regular", 25 | "size": 16, 26 | "color": "#e0def4" 27 | }, 28 | 29 | "title1": { 30 | "color": "#9ccfd8", 31 | "size": 28 32 | }, 33 | 34 | "title2": { 35 | "color": "#9ccfd8", 36 | "size": 24 37 | }, 38 | 39 | "title3": { 40 | "color": "#9ccfd8", 41 | "size": 20 42 | }, 43 | 44 | "title4": { 45 | "color": "#9ccfd8", 46 | "size": 18, 47 | "underlineStyle": 1 48 | }, 49 | 50 | "working-on": { 51 | "backgroundColor": "#6FEEF1ED", 52 | "color": "#31748f" 53 | }, 54 | 55 | "flagged-1": { 56 | "backgroundColor": "#2238313F", 57 | "color": "#d7827e" 58 | }, 59 | 60 | "flagged-2": { 61 | "backgroundColor": "#40393137", 62 | "color": "#f6c177" 63 | }, 64 | 65 | "flagged-3": { 66 | "backgroundColor": "#3038273B", 67 | "color": "#eb6f92" 68 | }, 69 | 70 | "title-mark1": { 71 | "color": "#339ccfd8", 72 | "size": 28 73 | }, 74 | 75 | "title-mark2": { 76 | "color": "#339ccfd8", 77 | "size": 24 78 | }, 79 | 80 | "title-mark3": { 81 | "color": "#339ccfd8", 82 | "size": 20 83 | }, 84 | 85 | "title-mark4": { 86 | "color": "#339ccfd8", 87 | "size": 18 88 | }, 89 | 90 | "bold": { 91 | "color": "#31748f", 92 | "type": "bold" 93 | }, 94 | 95 | "bold-left-mark": { 96 | "color": "#339ccfd8" 97 | }, 98 | 99 | "bold-right-mark": { 100 | "color": "#339ccfd8" 101 | }, 102 | 103 | "italic": { 104 | "color": "#9ccfd8", 105 | "type": "italic" 106 | }, 107 | 108 | "italic-left-mark": { 109 | "color": "#339ccfd8" 110 | }, 111 | 112 | "italic-right-mark": { 113 | "color": "#339ccfd8" 114 | }, 115 | 116 | "boldItalic": { 117 | "type": "bolditalic" 118 | }, 119 | 120 | "boldItalic-left-mark": { 121 | "color": "#339ccfd8" 122 | }, 123 | 124 | "boldItalic-right-mark": { 125 | "color": "#339ccfd8" 126 | }, 127 | 128 | "code": { 129 | "font": "Menlo-Regular", 130 | "color": "#c4a7e7", 131 | "backgroundColor": "#33332E44", 132 | "size": 15 133 | }, 134 | 135 | "code-left-backtick": { 136 | "color": "#66c4a7e7", 137 | "backgroundColor": "#33332E44" 138 | }, 139 | 140 | "code-right-backtick": { 141 | "color": "#66c4a7e7", 142 | "backgroundColor": "#33332E44" 143 | }, 144 | 145 | "checked": { 146 | "regex": "(^\\h*[\\*\\-\\+]{1} |^\\h*[0-9]+[\\.\\)] )(\\[x\\] )(.*)", 147 | "matchPosition": 0, 148 | 149 | "color": "#889ccfd8", 150 | "headIndent": 33 151 | }, 152 | 153 | "checked-canceled": { 154 | "regex": "(^\\h*[\\*\\-\\+]{1} |^\\h*[0-9]+[\\.\\)] )(\\[\\-\\] )(.*)", 155 | "matchPosition": 0, 156 | 157 | "color": "#44eb6f92", 158 | "strikethroughStyle": 1, 159 | "headIndent": 33 160 | }, 161 | 162 | "checked-scheduled": { 163 | "regex": "(^\\h*[\\*\\-\\+]{1} |^\\h*[0-9]+[\\.\\)] )(\\[\\>\\] )(.*)", 164 | "matchPosition": 0, 165 | 166 | "color": "#88f6c177", 167 | "headIndent": 33 168 | }, 169 | 170 | "todo": { 171 | "color": "#f6c177", 172 | "headIndent": 33, 173 | "size": 16 174 | }, 175 | 176 | "checked-todo-characters": { 177 | "headIndent": 33, 178 | "size": 16 179 | }, 180 | 181 | "tabbed": { 182 | "headIndent": 43 183 | }, 184 | 185 | "quote-mark": { 186 | "color": "#80c4a7e7", 187 | "headIndent": 33, 188 | "size": 16 189 | }, 190 | 191 | "quote-content": { 192 | "color": "#CCe0def4", 193 | "type": "italic", 194 | "headIndent": 33 195 | }, 196 | 197 | "link": {}, 198 | 199 | "schedule-to-date-link": {}, 200 | 201 | "done-date": {}, 202 | 203 | "schedule-from-date-link": {}, 204 | 205 | "note-title-link": {}, 206 | 207 | "hashtag": { 208 | "backgroundColor": "#4031748f" 209 | }, 210 | 211 | "attag": { 212 | "backgroundColor": "#4031748f" 213 | }, 214 | 215 | "phonenumber": { 216 | "backgroundColor": "#6631748f" 217 | }, 218 | 219 | "highlighted": { 220 | "backgroundColor": "#449ccfd8" 221 | }, 222 | 223 | "highlighted-left-marker": { 224 | "color": "#409ccfd8" 225 | }, 226 | 227 | "highlighted-right-marker": { 228 | "color": "#409ccfd8" 229 | }, 230 | 231 | "strikethrough": { 232 | "color": "#AAebbcba", 233 | "strikethroughColor": "#ebbcba" 234 | }, 235 | 236 | "strikethrough-left-tilde": { 237 | "color": "#55e0def4" 238 | }, 239 | 240 | "strikethrough-right-tilde": { 241 | "color": "#55e0def4" 242 | }, 243 | 244 | "underline": { 245 | "underlineStyle": 2, 246 | "underlineColor": "#f6c177" 247 | }, 248 | 249 | "underline-left-tilde": { 250 | "color": "#55e0def4" 251 | }, 252 | 253 | "underline-right-tilde": { 254 | "color": "#55e0def4" 255 | } 256 | } 257 | } 258 | -------------------------------------------------------------------------------- /bin/Scripture Night.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "Scripture Night", 3 | "style": "Dark", 4 | "author": { 5 | "name": "Robert Grace", 6 | "email": "robert.grace@gmail.com" 7 | }, 8 | 9 | "editor": { 10 | "backgroundColor": "#402506", 11 | "altBackgroundColor": "#3A2001", 12 | "tintColor": "#C87cc8", 13 | "tintColor2": "#CB84CB", 14 | "textColor":"#FFD700", 15 | "toolbarBackgroundColor": "#563A1B", 16 | "toolbarIconColor": "#CCCCAA", 17 | "menuItemColor": "#CCCCAA", 18 | "shouldOverwriteFont": false 19 | }, 20 | 21 | "styles": { 22 | 23 | "body": { 24 | "font": "Palatino-Roman", 25 | "size": 19, 26 | "color": "#DDCCAA" 27 | }, 28 | 29 | "title1": { 30 | "color": "#FFD700", 31 | "size": 28, 32 | "font": "Palatino-Bold" 33 | }, 34 | 35 | "title2": { 36 | "color": "#FFD700", 37 | "size": 26, 38 | "font": "Palatino-Bold" 39 | }, 40 | 41 | "title3": { 42 | "color": "#FFD700", 43 | "size": 24, 44 | "font": "Palatino-Bold" 45 | }, 46 | 47 | "title-mark1": { 48 | "color": "#95EB7381", 49 | "size": 28, 50 | "font": "AvenirNext-DemiBold" 51 | }, 52 | 53 | "title-mark2": { 54 | "color": "#95EB7381", 55 | "size": 24, 56 | "font": "AvenirNext-DemiBold" 57 | }, 58 | 59 | "title-mark3": { 60 | "color": "#95EB7381", 61 | "size": 20, 62 | "font": "AvenirNext-DemiBold" 63 | }, 64 | 65 | "bold": { 66 | "font": "Palatino-Bold", 67 | "color": "FF0000" 68 | }, 69 | 70 | "bold-left-mark": { 71 | "color": "#45C7C6CC" 72 | }, 73 | 74 | "bold-right-mark": { 75 | "color": "#45C7C6CC" 76 | }, 77 | 78 | "italic": { 79 | "font": "Palatino-Italic" 80 | }, 81 | 82 | "italic-left-mark": { 83 | "color": "#45C7C6CC" 84 | }, 85 | 86 | "italic-right-mark": { 87 | "color": "#45C7C6CC" 88 | }, 89 | 90 | "boldItalic": { 91 | "font": "Palatino-BoldItalic" 92 | }, 93 | 94 | "boldItalic-left-mark": { 95 | "color": "#45C7C6CC" 96 | }, 97 | 98 | "boldItalic-right-mark": { 99 | "color": "#45C7C6CC" 100 | }, 101 | 102 | "code": { 103 | "font": "Menlo-Regular", 104 | "color": "#ECCB84", 105 | "size": 15 106 | }, 107 | 108 | "code-left-backtick": { 109 | "color": "#66ECCB84" 110 | }, 111 | 112 | "code-right-backtick": { 113 | "color": "#66ECCB84" 114 | }, 115 | 116 | "checked": { 117 | "color": "#66C7C6CC", 118 | "headIndent": 33 119 | }, 120 | 121 | "todo": { 122 | "font": "noteplanstate", 123 | "color": "#9EC87C", 124 | "headIndent": 33, 125 | "size": 16 126 | }, 127 | 128 | "checked-todo-characters": { 129 | "font": "noteplanstate", 130 | "headIndent": 33, 131 | "size": 16 132 | }, 133 | 134 | "special-char": { 135 | "font": "Menlo-Regular" 136 | }, 137 | 138 | "tabbed": { 139 | "headIndent": 43 140 | }, 141 | 142 | "quote-mark": { 143 | "color": "#80ECCB84", 144 | "font": "noteplanstate", 145 | "headIndent": 33, 146 | "size": 16 147 | }, 148 | 149 | "quote-content": { 150 | "color": "#CCCCC6", 151 | "type": "italic", 152 | "headIndent": 33 153 | }, 154 | 155 | "online-verse-ref-link": { 156 | "regex": "(\\[([1-3]?[A-Za-z]+)\\h*([0-9]{1,3})(:[0-9]{1,3}(\\-[0-9]{1,3}(:[0-9]{1,3})?)?)?\\])", 157 | "matchPosition": 1, 158 | "urlPosition": 1, 159 | "type": "link", 160 | "backgroundColor":"#563A1B", 161 | "font": "Palatino-Bold", 162 | "prefix": "https://www.biblegateway.com/passage/?search=" 163 | }, 164 | 165 | "verse-ref-link": { 166 | "regex": "(\\s|^|\\()(([1-3]?[A-Za-z]+)\\h+([0-9]{1,3}):[0-9]{1,3}(\\-[0-9]{1,3}(:[0-9]{1,3})?)?)", 167 | "matchPosition": 2, 168 | "urlPosition": 2, 169 | "type": "link", 170 | "backgroundColor":"#563A1B", 171 | "font": "Palatino-Bold", 172 | "prefix": "olivetree://bible/" 173 | }, 174 | 175 | "link": { 176 | 177 | }, 178 | 179 | "schedule-to-date-link": { 180 | 181 | }, 182 | 183 | "done-date": { 184 | 185 | }, 186 | 187 | "schedule-from-date-link": { 188 | 189 | }, 190 | 191 | "note-title-link": { 192 | 193 | }, 194 | 195 | "hashtag": { 196 | 197 | }, 198 | 199 | "attag": { 200 | 201 | }, 202 | 203 | "phonenumber": { 204 | 205 | } 206 | } 207 | } 208 | 209 | -------------------------------------------------------------------------------- /bin/Scripture.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "Scripture", 3 | "style": "Light", 4 | "author": { 5 | "name": "Robert Grace", 6 | "email": "robert.grace@gmail.com" 7 | }, 8 | 9 | "editor": { 10 | "backgroundColor": "#ffffdd", 11 | "altBackgroundColor": "#eeeecc", 12 | "tintColor": "#907363", 13 | "tintColor2": "#ff1010", 14 | "textColor":"#000000", 15 | "toolbarBackgroundColor": "#ffffcc", 16 | "toolbarIconColor": "#FF4444", 17 | "menuItemColor": "#cc4444", 18 | "shouldOverwriteFont": false 19 | }, 20 | 21 | "styles": { 22 | 23 | "body": { 24 | "font": "Palatino-Roman", 25 | "size": 19, 26 | "color": "#000000" 27 | }, 28 | 29 | "title1": { 30 | "color": "#743101", 31 | "size": 28, 32 | "font": "Palatino-Bold" 33 | }, 34 | 35 | "title2": { 36 | "color": "#743101", 37 | "size": 26, 38 | "font": "Palatino-Bold" 39 | }, 40 | 41 | "title3": { 42 | "color": "#743101", 43 | "size": 24, 44 | "font": "Palatino-Bold" 45 | 46 | }, 47 | 48 | "title-mark1": { 49 | "color": "#40000000", 50 | "size": 28, 51 | "font": "AvenirNext-DemiBold" 52 | }, 53 | 54 | "title-mark2": { 55 | "color": "#40000000", 56 | "size": 24, 57 | "font": "AvenirNext-DemiBold" 58 | }, 59 | 60 | "title-mark3": { 61 | "color": "#40000000", 62 | "size": 20, 63 | "font": "AvenirNext-DemiBold" 64 | }, 65 | 66 | "bold": { 67 | "font": "Palatino-Bold", 68 | "color": "#FF0000", 69 | "type": "bold" 70 | }, 71 | 72 | "bold-left-mark": { 73 | "color": "#FF000000" 74 | }, 75 | 76 | "bold-right-mark": { 77 | "color": "#FF000000" 78 | }, 79 | 80 | "italic": { 81 | "font": "Palatino-Italic", 82 | "type": "italic" 83 | }, 84 | 85 | "italic-left-mark": { 86 | "color": "#40000000" 87 | }, 88 | 89 | "italic-right-mark": { 90 | "color": "#40000000" 91 | }, 92 | 93 | "boldItalic": { 94 | "type": "Palatino-BoldItalic" 95 | }, 96 | 97 | "boldItalic-left-mark": { 98 | "color": "#40000000" 99 | }, 100 | 101 | "boldItalic-right-mark": { 102 | "color": "#40000000" 103 | }, 104 | 105 | "code": { 106 | "font": "Menlo-Regular", 107 | "color": "#AA44AA", 108 | "size": 15 109 | }, 110 | 111 | "code-left-backtick": { 112 | "color": "#660091f8" 113 | }, 114 | 115 | "code-right-backtick": { 116 | "color": "#660091f8" 117 | }, 118 | 119 | "checked": { 120 | "color": "#66333333", 121 | "headIndent": 33 122 | }, 123 | 124 | "todo": { 125 | "font": "noteplanstate", 126 | "color": "#d87001", 127 | "headIndent": 33, 128 | "size": 16 129 | }, 130 | 131 | "checked-todo-characters": { 132 | "font": "noteplanstate", 133 | "headIndent": 33, 134 | "size": 16 135 | }, 136 | 137 | "special-char": { 138 | "font": "Menlo-Regular" 139 | }, 140 | 141 | "tabbed": { 142 | "headIndent": 43 143 | }, 144 | 145 | "quote-mark": { 146 | "color": "#800091f8", 147 | "font": "noteplanstate", 148 | "headIndent": 33, 149 | "size": 16 150 | }, 151 | 152 | "quote-content": { 153 | "color": "#333333", 154 | "type": "italic", 155 | "headIndent": 33 156 | }, 157 | 158 | "online-verse-ref-link": { 159 | "regex": "(\\[([1-3]?[A-Za-z]+)\\h*([0-9]{1,3})(:[0-9]{1,3}(\\-[0-9]{1,3}(:[0-9]{1,3})?)?)?\\])", 160 | "matchPosition": 1, 161 | "urlPosition": 1, 162 | "type": "link", 163 | "backgroundColor":"#efefcc", 164 | "font": "Palatino-Bold", 165 | "prefix": "https://www.biblegateway.com/passage/?search=" 166 | }, 167 | 168 | "verse-ref-link": { 169 | "regex": "(\\s|^|\\()(([1-3]?[A-Za-z]+)\\h+([0-9]{1,3}):[0-9]{1,3}(\\-[0-9]{1,3}(:[0-9]{1,3})?)?)", 170 | "matchPosition": 2, 171 | "urlPosition": 2, 172 | "type": "link", 173 | "backgroundColor":"#efefcc", 174 | "font": "Palatino-Bold", 175 | "prefix": "olivetree://bible/" 176 | }, 177 | 178 | "schedule-to-date-link": { 179 | 180 | }, 181 | 182 | "done-date": { 183 | 184 | }, 185 | 186 | "schedule-from-date-link": { 187 | 188 | }, 189 | 190 | "note-title-link": { 191 | 192 | }, 193 | 194 | "hashtag": { 195 | 196 | }, 197 | 198 | "attag": { 199 | 200 | }, 201 | 202 | "phonenumber": { 203 | 204 | } 205 | } 206 | } 207 | -------------------------------------------------------------------------------- /bin/Soft Blue.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "Soft Blue", 3 | "style": "Light", 4 | "author": { 5 | "name": "Jane", 6 | "email": "jane@email.com" 7 | }, 8 | "editor": { 9 | "backgroundColor": "#FAFAFA", 10 | "altBackgroundColor": "#FFFFFF", 11 | "tintColor": "#326891", 12 | "tintColor2": "#DD3E3B", 13 | "textColor": "#4A616D", 14 | "toolbarBackgroundColor": "#FAFAFA", 15 | "toolbarIconColor": "#414141", 16 | "menuItemColor": "#414141", 17 | "shouldOverwriteFont": true 18 | }, 19 | "styles": { 20 | "body": { 21 | "font": "AvenirNext-Regular", 22 | "size": 16, 23 | "color": "#4A616D" 24 | }, 25 | "title1": { 26 | "color": "#4A7B9D", 27 | "size": 28, 28 | "font": "AvenirNext-DemiBold" 29 | }, 30 | "title2": { 31 | "color": "#6696B7", 32 | "size": 24, 33 | "font": "AvenirNext-DemiBold" 34 | }, 35 | "title3": { 36 | "color": "#82AAC4", 37 | "size": 20, 38 | "font": "AvenirNext-DemiBold" 39 | }, 40 | "title-mark1": { 41 | "color": "#4A7B9D", 42 | "size": 28, 43 | "font": "AvenirNext-DemiBold" 44 | }, 45 | "title-mark2": { 46 | "color": "#6696B7", 47 | "size": 24, 48 | "font": "AvenirNext-DemiBold" 49 | }, 50 | "title-mark3": { 51 | "color": "#82AAC4", 52 | "size": 20, 53 | "font": "AvenirNext-DemiBold" 54 | }, 55 | "bold": { 56 | "color": "#5D8B4E", 57 | "font": "AvenirNext-Bold" 58 | }, 59 | "bold-left-mark": { 60 | "color": "#5D8B4E" 61 | }, 62 | "bold-right-mark": { 63 | "color": "#5D8B4E" 64 | }, 65 | "italic": { 66 | "color": "#5D8B4E", 67 | "font": "AvenirNext-Italic" 68 | }, 69 | "italic-left-mark": { 70 | "color": "#5D8B4E" 71 | }, 72 | "italic-right-mark": { 73 | "color": "#5D8B4E" 74 | }, 75 | "boldItalic": { 76 | "font": "AvenirNext-BoldItalic" 77 | }, 78 | "boldItalic-left-mark": { 79 | "color": "#5D8B4E" 80 | }, 81 | "boldItalic-right-mark": { 82 | "color": "#5D8B4E" 83 | }, 84 | "code": { 85 | "font": "Menlo-Regular", 86 | "color": "#F7996E", 87 | "size": 15 88 | }, 89 | "code-left-backtick": { 90 | "color": "#F7996E" 91 | }, 92 | "code-right-backtick": { 93 | "color": "#F7996E" 94 | }, 95 | "checked": { 96 | "headIndent": 33 97 | }, 98 | "todo": { 99 | "font": "noteplanstate", 100 | "color": "#BD898C", 101 | "headIndent": 33, 102 | "size": 16 103 | }, 104 | "checked-todo-characters": { 105 | "font": "noteplanstate", 106 | "headIndent": 33, 107 | "size": 16 108 | }, 109 | "checked-completed-mark": { 110 | "regex": "(^\\h*[\\*\\-]{1} |^\\h*[0-9]+[\\.\\)] )(\\[x\\] )", 111 | "matchPosition": 0, 112 | "color": "#D2B1B2", 113 | "headIndent": 33 114 | }, 115 | "checked-completed-content": { 116 | "regex": "(^\\h*[\\*\\-]{1} |^\\h*[0-9]+[\\.\\)] )(\\[x\\] )(.*)", 117 | "matchPosition": 3, 118 | "color": "#D2B1B2", 119 | "headIndent": 33 120 | }, 121 | "checked-scheduled": { 122 | "regex": "(^\\h*[\\*\\-]{1} |^\\h*[0-9]+[\\.\\)] )(\\[\\>\\] )", 123 | "matchPosition": 0, 124 | "color": "#BD898D", 125 | "headIndent": 33 126 | }, 127 | "checked-canceled": { 128 | "regex": "(^\\h*[\\*\\-]{1} |^\\h*[0-9]+[\\.\\)] )(\\[\\-\\] )(.*)", 129 | "matchPosition": 0, 130 | "color": "#AD7173", 131 | "headIndent": 33 132 | }, 133 | "special-char": { 134 | "font": "Menlo-Regular" 135 | }, 136 | "tabbed": { 137 | "headIndent": 43 138 | }, 139 | "quote-mark": { 140 | "color": "#BD898C", 141 | "font": "noteplanstate", 142 | "headIndent": 33, 143 | "size": 16 144 | }, 145 | "quote-content": { 146 | "color": "#7994A4", 147 | "type": "italic", 148 | "headIndent": 33 149 | }, 150 | "highlighted": { 151 | "regex": "(::)([^:]{1,})(::)", 152 | "matchPosition": 2, 153 | "isRevealOnCursorRange": true, 154 | "backgroundColor": "#DBBDC5" 155 | }, 156 | "highlighted-left-colon": { 157 | "regex": "(::)([^:]{1,})(::)", 158 | "matchPosition": 1, 159 | "isMarkdownCharacter": true, 160 | "isHiddenWithoutCursor": true, 161 | "isRevealOnCursorRange": true, 162 | "color": "#e1c4dee5", 163 | "backgroundColor": "#7745A2E5" 164 | }, 165 | "highlighted-right-colon": { 166 | "regex": "(::)([^:]{1,})(::)", 167 | "matchPosition": 3, 168 | "isMarkdownCharacter": true, 169 | "isHiddenWithoutCursor": true, 170 | "isRevealOnCursorRange": true, 171 | "color": "#e1c4dee5", 172 | "backgroundColor": "#7745A2E5" 173 | }, 174 | "flagged-1": { 175 | "regex": "(^|\\v)(\\h*(\\*|-)\\h*(\\[ \\]\\h+|\\h+)(\\!{1}\\h+.*))($|\\v)", 176 | "matchPosition": 5, 177 | "backgroundColor": "#22D0021B", 178 | "headIndent": 33 179 | }, 180 | "flagged-2": { 181 | "regex": "(^|\\v)(\\h*(\\*|-)\\h*(\\[ \\]\\h+|\\h+)(\\!{2}\\h+.*))($|\\v)", 182 | "matchPosition": 5, 183 | "backgroundColor": "#55D0021B", 184 | "headIndent": 33 185 | }, 186 | "flagged-3": { 187 | "regex": "(^|\\v)(\\h*(\\*|-)\\h*(\\[ \\]\\h+|\\h+)(\\!{3}\\h+.*))($|\\v)", 188 | "matchPosition": 5, 189 | "backgroundColor": "#AAD0021B", 190 | "headIndent": 33 191 | }, 192 | "strikethrough": { 193 | "regex": "(~~)([^:]{1,})(~~)", 194 | "matchPosition": 2, 195 | "isRevealOnCursorRange": true, 196 | "color": "#AAc5c5c0", 197 | "strikethroughStyle": 1, 198 | "strikethroughColor": "#3d4343c0" 199 | }, 200 | "strikethrough-left-tildes": { 201 | "regex": "(~~)([^:]{1,})(~~)", 202 | "matchPosition": 1, 203 | "isMarkdownCharacter": true, 204 | "isHiddenWithoutCursor": true, 205 | "isRevealOnCursorRange": true, 206 | "color": "#66c5c5c0" 207 | }, 208 | "strikethrough-right-tildes": { 209 | "regex": "(~~)([^:]{1,})(~~)", 210 | "matchPosition": 3, 211 | "isMarkdownCharacter": true, 212 | "isHiddenWithoutCursor": true, 213 | "isRevealOnCursorRange": true, 214 | "color": "#66c5c5c0" 215 | }, 216 | "link": {}, 217 | "schedule-to-date-link": {}, 218 | "done-date": {}, 219 | "schedule-from-date-link": {}, 220 | "note-title-link": {}, 221 | "hashtag": {}, 222 | "attag": {}, 223 | "phonenumber": {} 224 | } 225 | } -------------------------------------------------------------------------------- /bin/Soft Contrast Dark.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "Soft Contrast Dark", 3 | "style": "Dark", 4 | "author": { 5 | "name": "zgr", 6 | "email": "zgrdocs@gmail.com" 7 | }, 8 | 9 | "editor": { 10 | "backgroundColor": "#414141", 11 | "altBackgroundColor": "#414141", 12 | "tintColor": "#D6665E", 13 | "tintColor2": "#5B8DE3", 14 | "textColor":"#D9D9D9", 15 | "toolbarBackgroundColor": "#414141", 16 | "toolbarIconColor": "#568594", 17 | "menuItemColor": "#D9D9D9", 18 | "shouldOverwriteFont": false 19 | }, 20 | 21 | "styles": { 22 | 23 | "body": { 24 | "font": "iAWriterQuattroS-Regular", 25 | "size": 16, 26 | "color": "#D9D9D9" 27 | }, 28 | 29 | "title1": { 30 | "font": "AvenirNextCondensed-DemiBold", 31 | "color": "#D9D9D9", 32 | "size": 28 33 | }, 34 | 35 | "title2": { 36 | "font": "AvenirNextCondensed-DemiBold", 37 | "color": "#D9D9D9", 38 | "size": 24 39 | }, 40 | 41 | "title3": { 42 | "font": "AvenirNextCondensed-DemiBold", 43 | "color": "#D9D9D9", 44 | "underlineStyle": 1, 45 | "size": 20 46 | }, 47 | 48 | "title-mark1": { 49 | "color": "#A9A9A9", 50 | "size": 28, 51 | "font": "iAWriterQuattroS-Regular" 52 | }, 53 | 54 | "title-mark2": { 55 | "color": "#A9A9A9", 56 | "size": 24, 57 | "font": "iAWriterQuattroS-Regular" 58 | }, 59 | 60 | "title-mark3": { 61 | "color": "#A9A9A9", 62 | "size": 20, 63 | "font": "iAWriterQuattroS-Regular" 64 | }, 65 | 66 | "bold": { 67 | "size": 16, 68 | "font": "InputSans-Bold" 69 | }, 70 | 71 | 72 | "bold-left-mark": { 73 | "color": "#A9A9A9" 74 | }, 75 | 76 | "bold-right-mark": { 77 | "color": "#A9A9A9" 78 | }, 79 | 80 | "italic": { 81 | "size": 16, 82 | "font": "iAWriterDuospace-Regular", 83 | "underlineStyle": 1, 84 | }, 85 | 86 | "italic-left-mark": { 87 | "color": "#A9A9A9" 88 | }, 89 | 90 | "italic-right-mark": { 91 | "color": "#A9A9A9" 92 | }, 93 | 94 | "boldItalic": { 95 | "font": "iAWriterQuattroV-BoldItalic" 96 | }, 97 | 98 | "boldItalic-left-mark": { 99 | "color": "#A9A9A9" 100 | }, 101 | 102 | "boldItalic-right-mark": { 103 | "color": "#A9A9A9" 104 | }, 105 | 106 | "code": { 107 | "font": "InputMono-Regular", 108 | "color": "#343434", 109 | "backgroundColor": "#939393", 110 | "size": 14 111 | }, 112 | 113 | "checked": { 114 | "color": "#929292", 115 | "type": "italic", 116 | "headIndent": 33 117 | }, 118 | 119 | "todo": { 120 | "font": "noteplanstate", 121 | "color": "#5B8DE3", 122 | "headIndent": 33, 123 | "size": 16 124 | }, 125 | 126 | "checked-todo-characters": { 127 | "font": "noteplanstate", 128 | "headIndent": 33, 129 | "size": 16 130 | }, 131 | 132 | "special-char": { 133 | "font": "Menlo-Regular" 134 | }, 135 | 136 | "tabbed": { 137 | "headIndent": 43 138 | }, 139 | 140 | "quote-mark": { 141 | "color": "#D6665E", 142 | "font": "noteplanstate", 143 | "headIndent": 33, 144 | "size": 16 145 | }, 146 | 147 | "quote-content": { 148 | "color": "#D9D9D9", 149 | "font": "iAWriterDuospace-Regular", 150 | "size": 16, 151 | "headIndent": 33 152 | }, 153 | 154 | "code-left-backtick": { 155 | "color": "#FFA759" 156 | }, 157 | 158 | "code-right-backtick": { 159 | "color": "#FFA759" 160 | }, 161 | 162 | "checked": { 163 | "color": "#66333333", 164 | "headIndent": 33 165 | }, 166 | 167 | 168 | "link": { 169 | 170 | }, 171 | 172 | "schedule-to-date-link": { 173 | 174 | }, 175 | 176 | "done-date": { 177 | 178 | }, 179 | 180 | "schedule-from-date-link": { 181 | 182 | }, 183 | 184 | "note-title-link": { 185 | 186 | }, 187 | 188 | "hashtag": { 189 | 190 | }, 191 | 192 | "attag": { 193 | 194 | }, 195 | 196 | "phonenumber": { 197 | 198 | } 199 | } 200 | } 201 | 202 | -------------------------------------------------------------------------------- /bin/Soft Contrast Light.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "Soft Contrast Light", 3 | "style": "Light", 4 | "author": { 5 | "name": "zgr", 6 | "email": "zgrdocs@gmail.com" 7 | }, 8 | "editor": { 9 | "backgroundColor": "#EBEBEB", 10 | "altBackgroundColor": "#F8F8F8", 11 | "tintColor": "#D6665E", 12 | "tintColor2": "5B8DE3", 13 | "textColor": "#333333", 14 | "toolbarBackgroundColor": "#D9D9D9", 15 | "toolbarIconColor": "#414141", 16 | "menuItemColor": "#414141", 17 | "shouldOverwriteFont": false 18 | }, 19 | "styles": { 20 | "body": { 21 | "font": "iAWriterQuattroS-Regular", 22 | "size": 16, 23 | "color": "#000000" 24 | }, 25 | "title1": { 26 | "font": "AvenirNextCondensed-DemiBold", 27 | "color": "#000000", 28 | "size": 28 29 | }, 30 | "title2": { 31 | "font": "AvenirNextCondensed-DemiBold", 32 | "color": "#000000", 33 | "size": 24 34 | }, 35 | "title3": { 36 | "font": "AvenirNextCondensed-DemiBold", 37 | "color": "#000000", 38 | "underlineStyle": 1, 39 | "size": 20 40 | }, 41 | "title-mark1": { 42 | "color": "#ABABAB", 43 | "size": 28, 44 | "font": "iAWriterQuattroS-Regular" 45 | }, 46 | "title-mark2": { 47 | "color": "#ABABAB", 48 | "size": 24, 49 | "font": "iAWriterQuattroS-Regular" 50 | }, 51 | "title-mark3": { 52 | "color": "#ABABAB", 53 | "size": 20, 54 | "font": "iAWriterQuattroS-Regular" 55 | }, 56 | "bold": { 57 | "size": 16, 58 | "font": "InputSans-Bold" 59 | }, 60 | "bold-left-mark": { 61 | "color": "#ABABAB" 62 | }, 63 | "bold-right-mark": { 64 | "color": "#ABABAB" 65 | }, 66 | "italic": { 67 | "size": 16, 68 | "font": "iAWriterDuospace-Regular", 69 | "underlineStyle": 1 70 | }, 71 | "italic-left-mark": { 72 | "color": "#ABABAB" 73 | }, 74 | "italic-right-mark": { 75 | "color": "#ABABAB" 76 | }, 77 | "boldItalic": { 78 | "font": "iAWriterQuattroV-BoldItalic" 79 | }, 80 | "boldItalic-left-mark": { 81 | "color": "#ABABAB" 82 | }, 83 | "boldItalic-right-mark": { 84 | "color": "#ABABAB" 85 | }, 86 | "code": { 87 | "font": "InputMono-Regular", 88 | "color": "#009155", 89 | "backgroundColor": "#daeae3", 90 | "size": 14 91 | }, 92 | "code-left-backtick": { 93 | "color": "#414141" 94 | }, 95 | "code-right-backtick": { 96 | "color": "#414141" 97 | }, 98 | "checked": { 99 | "color": "#66000000", 100 | "type": "italic", 101 | "headIndent": 33 102 | }, 103 | "todo": { 104 | "font": "noteplanstate", 105 | "color": "#5B8DE3", 106 | "headIndent": 33, 107 | "size": 16 108 | }, 109 | "checked-todo-characters": { 110 | "font": "noteplanstate", 111 | "headIndent": 33, 112 | "size": 16 113 | }, 114 | "special-char": { 115 | "font": "Menlo-Regular" 116 | }, 117 | "tabbed": { 118 | "headIndent": 43 119 | }, 120 | "quote-mark": { 121 | "color": "#d6665e", 122 | "font": "noteplanstate", 123 | "headIndent": 33, 124 | "size": 16 125 | }, 126 | "quote-content": { 127 | "color": "#000000", 128 | "type": "italic", 129 | "font": "iAWriterDuospace-Regular", 130 | "size": 16, 131 | "headIndent": 33 132 | }, 133 | "link": {}, 134 | "schedule-to-date-link": {}, 135 | "done-date": {}, 136 | "schedule-from-date-link": {}, 137 | "note-title-link": {}, 138 | "hashtag": {}, 139 | "attag": {}, 140 | "phonenumber": {} 141 | } 142 | } -------------------------------------------------------------------------------- /bin/Squid Ink Light.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "Squid Ink Light", 3 | "style": "Light", 4 | "author": { 5 | "name": "Brad Rokosz", 6 | "email": "hello@noteplan.co" 7 | }, 8 | "editor": { 9 | "backgroundColor": "#ffffff", 10 | "altBackgroundColor": "#FAFFFF", 11 | "tintColor": "#f8991c", 12 | "tintColor2": "#00a6ce", 13 | "textColor": "#212f3e", 14 | "toolbarBackgroundColor": "#FAFFFF", 15 | "toolbarIconColor": "#f8991c", 16 | "menuItemColor": "#f8991c", 17 | "shouldOverwriteFont": false 18 | }, 19 | "styles": { 20 | "body": { 21 | "font": "AmazonEmber-Regular", 22 | "size": 16, 23 | "color": "#212f3e" 24 | }, 25 | "title1": { 26 | "color": "#212f3e", 27 | "size": 28 28 | }, 29 | "title2": { 30 | "color": "#212f3e", 31 | "size": 24 32 | }, 33 | "title3": { 34 | "color": "#212f3e", 35 | "size": 20 36 | }, 37 | "title4": { 38 | "color": "#212f3e", 39 | "size": 18 40 | }, 41 | "title-mark1": { 42 | "color": "#00a6ce", 43 | "size": 28 44 | }, 45 | "title-mark2": { 46 | "color": "#00a6ce", 47 | "size": 24 48 | }, 49 | "title-mark3": { 50 | "color": "#00a6ce", 51 | "size": 20 52 | }, 53 | "title-mark4": { 54 | "color": "#00a6ce", 55 | "size": 18 56 | }, 57 | "bold": { 58 | "size": 16, 59 | "color": "#00a6ce", 60 | "font": "AmazonEmber-Bold" 61 | }, 62 | "bold-left-mark": { 63 | "color": "#00a6ce" 64 | }, 65 | "bold-right-mark": { 66 | "color": "#00a6ce" 67 | }, 68 | "italic": { 69 | "size": 16, 70 | "color": "#00a6ce", 71 | "font": "AmazonEmber-Italic" 72 | }, 73 | "italic-left-mark": { 74 | "color": "#00a6ce" 75 | }, 76 | "italic-right-mark": { 77 | "color": "#00a6ce" 78 | }, 79 | "boldItalic": { 80 | "size": 16, 81 | "color": "#00a6ce", 82 | "font": "AmazonEmber-BoldItalic" 83 | }, 84 | "boldItalic-left-mark": { 85 | "color": "#00a6ce" 86 | }, 87 | "boldItalic-right-mark": { 88 | "color": "#00a6ce" 89 | }, 90 | "code": { 91 | "font": "AmazonEmberMono-Regular", 92 | "backgroundColor": "##f2f3f3", 93 | "color": "#212f3e" 94 | }, 95 | "checked": { 96 | "color": "#88929292", 97 | "headIndent": 33, 98 | "strikethroughStyle": 1 99 | }, 100 | "todo": { 101 | "font": "noteplanstate", 102 | "color": "#f8991c", 103 | "headIndent": 33, 104 | "size": 16 105 | }, 106 | "checked-todo-characters": { 107 | "font": "noteplanstate", 108 | "headIndent": 33, 109 | "size": 16 110 | }, 111 | "special-char": { 112 | "font": "AmazonEmberMono-Regular" 113 | }, 114 | "tabbed": { 115 | "headIndent": 43 116 | }, 117 | "quote-mark": { 118 | "color": "#00a6ce", 119 | "font": "noteplanstate", 120 | "headIndent": 33, 121 | "size": 16 122 | }, 123 | "quote-content": { 124 | "color": "#929292", 125 | "type": "italic", 126 | "headIndent": 33 127 | }, 128 | "link": {}, 129 | "schedule-to-date-link": {}, 130 | "done-date": {}, 131 | "schedule-from-date-link": {}, 132 | "note-title-link": {}, 133 | "hashtag": {}, 134 | "attag": {}, 135 | "phonenumber": {}, 136 | "highlighted-colon": { 137 | "regex": "(::)([^:]{1,})(::)", 138 | "matchPosition": 2, 139 | "isRevealOnCursorRange": true, 140 | "color": "#212f3e", 141 | "backgroundColor": "#C1E5F1" 142 | }, 143 | "highlighted-left-colon": { 144 | "regex": "(::)([^:]{1,})(::)", 145 | "matchPosition": 1, 146 | "isMarkdownCharacter": true, 147 | "isHiddenWithoutCursor": true, 148 | "isRevealOnCursorRange": true, 149 | "color": "#C1E5F1" 150 | }, 151 | "highlighted-right-colon": { 152 | "regex": "(::)([^:]{1,})(::)", 153 | "matchPosition": 3, 154 | "isMarkdownCharacter": true, 155 | "isHiddenWithoutCursor": true, 156 | "isRevealOnCursorRange": true, 157 | "color": "#C1E5F1" 158 | }, 159 | "highlighted-equal": { 160 | "regex": "(==)([^=]{1,})(==)", 161 | "matchPosition": 2, 162 | "isRevealOnCursorRange": true, 163 | "color": "#212f3e", 164 | "backgroundColor": "#C1E5F1" 165 | }, 166 | "highlighted-left-equal": { 167 | "regex": "(==)([^=]{1,})(==)", 168 | "matchPosition": 1, 169 | "isMarkdownCharacter": true, 170 | "isHiddenWithoutCursor": true, 171 | "isRevealOnCursorRange": true, 172 | "color": "#C1E5F1" 173 | }, 174 | "highlighted-right-equal": { 175 | "regex": "(==)([^=]{1,})(==)", 176 | "matchPosition": 3, 177 | "isMarkdownCharacter": true, 178 | "isHiddenWithoutCursor": true, 179 | "isRevealOnCursorRange": true, 180 | "color": "#C1E5F1" 181 | }, 182 | "code-left-backtick": { 183 | "color": "#00a6ce" 184 | }, 185 | "code-right-backtick": { 186 | "color": "#00a6ce" 187 | }, 188 | "strikethrough": { 189 | "regex": "(~~)([^~]{1,})(~~)", 190 | "matchPosition": 2, 191 | "strikethroughStyle": 1, 192 | "isRevealOnCursorRange": true 193 | }, 194 | "strikethrough-left-tilde": { 195 | "regex": "(~~)([^~]{1,})(~~)", 196 | "matchPosition": 1, 197 | "isMarkdownCharacter": true, 198 | "isHiddenWithoutCursor": true, 199 | "color": "#00a6ce", 200 | "isRevealOnCursorRange": true 201 | }, 202 | "strikethrough-right-tilde": { 203 | "regex": "(~~)([^~]{1,})(~~)", 204 | "matchPosition": 3, 205 | "isMarkdownCharacter": true, 206 | "color": "#00a6ce", 207 | "isHiddenWithoutCursor": true, 208 | "isRevealOnCursorRange": true 209 | }, 210 | "codeblock": { 211 | "regex": "(```)([^```]{1,})(```)", 212 | "matchPosition": 2, 213 | "font": "AmazonEmberMono-Regular", 214 | "isRevealOnCursorRange": true 215 | }, 216 | "codeblock-left-codeblock": { 217 | "regex": "(```)([^```]{1,})(```)", 218 | "matchPosition": 1, 219 | "isMarkdownCharacter": true, 220 | "isHiddenWithoutCursor": true, 221 | "color": "#f8991c", 222 | "isRevealOnCursorRange": true 223 | }, 224 | "codeblock-right-codeblock": { 225 | "regex": "(```)([^```]{1,})(```)", 226 | "matchPosition": 3, 227 | "isMarkdownCharacter": true, 228 | "color": "#f8991c", 229 | "isHiddenWithoutCursor": true, 230 | "isRevealOnCursorRange": true 231 | } 232 | } 233 | } -------------------------------------------------------------------------------- /bin/Squid Ink.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "Squid Ink", 3 | "style": "Dark", 4 | "author": { 5 | "name": "Brad Rokosz", 6 | "email": "hello@noteplan.co" 7 | }, 8 | "editor": { 9 | "backgroundColor": "#212f3e", 10 | "altBackgroundColor": "#2c3a4b", 11 | "tintColor": "#f8991c", 12 | "tintColor2": "#00a6ce", 13 | "textColor": "#ffffff", 14 | "toolbarBackgroundColor": "#2c3a4b", 15 | "toolbarIconColor": "#f8991c", 16 | "menuItemColor": "#f8991c", 17 | "shouldOverwriteFont": false 18 | }, 19 | "styles": { 20 | "body": { 21 | "font": "AmazonEmber-Regular", 22 | "size": 16, 23 | "color": "#ffffff" 24 | }, 25 | "title1": { 26 | "color": "#ffffff", 27 | "size": 28 28 | }, 29 | "title2": { 30 | "color": "#ffffff", 31 | "size": 24 32 | }, 33 | "title3": { 34 | "color": "#ffffff", 35 | "size": 20 36 | }, 37 | "title4": { 38 | "color": "#ffffff", 39 | "size": 18 40 | }, 41 | "title-mark1": { 42 | "color": "#00a6ce", 43 | "size": 28 44 | }, 45 | "title-mark2": { 46 | "color": "#00a6ce", 47 | "size": 24 48 | }, 49 | "title-mark3": { 50 | "color": "#00a6ce", 51 | "size": 20 52 | }, 53 | "title-mark4": { 54 | "color": "#00a6ce", 55 | "size": 18 56 | }, 57 | "bold": { 58 | "color": "#00a6ce", 59 | "font": "AmazonEmber-Bold", 60 | "size": 16 61 | }, 62 | "bold-left-mark": { 63 | "color": "#00a6ce" 64 | }, 65 | "bold-right-mark": { 66 | "color": "#00a6ce" 67 | }, 68 | "italic": { 69 | "color": "#00a6ce", 70 | "font": "AmazonEmber-Italic", 71 | "size": 16 72 | }, 73 | "italic-left-mark": { 74 | "color": "#00a6ce" 75 | }, 76 | "italic-right-mark": { 77 | "color": "#00a6ce" 78 | }, 79 | "boldItalic": { 80 | "size": 16, 81 | "color": "#00a6ce", 82 | "font": "AmazonEmber-BoldItalic" 83 | }, 84 | "boldItalic-left-mark": { 85 | "color": "#00a6ce" 86 | }, 87 | "boldItalic-right-mark": { 88 | "color": "#00a6ce" 89 | }, 90 | "code": { 91 | "font": "AmazonEmberMono-Regular", 92 | "backgroundColor": "#16191f", 93 | "color": "#ffffff" 94 | }, 95 | "checked": { 96 | "color": "#55c0c0c0", 97 | "headIndent": 33, 98 | "strikethroughStyle": 1 99 | }, 100 | "todo": { 101 | "font": "noteplanstate", 102 | "color": "#f8991c", 103 | "headIndent": 33, 104 | "size": 16 105 | }, 106 | "checked-todo-characters": { 107 | "font": "noteplanstate", 108 | "headIndent": 33, 109 | "size": 16 110 | }, 111 | "special-char": { 112 | "font": "AmazonEmberMono-Regular" 113 | }, 114 | "tabbed": { 115 | "headIndent": 43 116 | }, 117 | "quote-mark": { 118 | "color": "#00a6ce", 119 | "font": "noteplanstate", 120 | "headIndent": 33, 121 | "size": 16 122 | }, 123 | "quote-content": { 124 | "color": "#c0c0c0", 125 | "type": "italic", 126 | "headIndent": 33 127 | }, 128 | "link": {}, 129 | "schedule-to-date-link": {}, 130 | "done-date": {}, 131 | "schedule-from-date-link": {}, 132 | "note-title-link": {}, 133 | "hashtag": {}, 134 | "attag": {}, 135 | "phonenumber": {}, 136 | "highlighted-colon": { 137 | "regex": "(::)([^:]{1,})(::)", 138 | "matchPosition": 2, 139 | "isRevealOnCursorRange": true, 140 | "color": "#ffffff", 141 | "backgroundColor": "#21546A" 142 | }, 143 | "highlighted-left-colon": { 144 | "regex": "(::)([^:]{1,})(::)", 145 | "matchPosition": 1, 146 | "isMarkdownCharacter": true, 147 | "isHiddenWithoutCursor": true, 148 | "isRevealOnCursorRange": true, 149 | "color": "#21546A" 150 | }, 151 | "highlighted-right-colon": { 152 | "regex": "(::)([^:]{1,})(::)", 153 | "matchPosition": 3, 154 | "isMarkdownCharacter": true, 155 | "isHiddenWithoutCursor": true, 156 | "isRevealOnCursorRange": true, 157 | "color": "#21546A" 158 | }, 159 | "highlighted-equal": { 160 | "regex": "(==)([^=]{1,})(==)", 161 | "matchPosition": 2, 162 | "isRevealOnCursorRange": true, 163 | "color": "#ffffff", 164 | "backgroundColor": "#21546A" 165 | }, 166 | "highlighted-left-equal": { 167 | "regex": "(==)([^=]{1,})(==)", 168 | "matchPosition": 1, 169 | "isMarkdownCharacter": true, 170 | "isHiddenWithoutCursor": true, 171 | "isRevealOnCursorRange": true, 172 | "color": "#21546A" 173 | }, 174 | "highlighted-right-equal": { 175 | "regex": "(==)([^=]{1,})(==)", 176 | "matchPosition": 3, 177 | "isMarkdownCharacter": true, 178 | "isHiddenWithoutCursor": true, 179 | "isRevealOnCursorRange": true, 180 | "color": "#21546A" 181 | }, 182 | "code-left-backtick": { 183 | "color": "#00a6ce" 184 | }, 185 | "code-right-backtick": { 186 | "color": "#00a6ce" 187 | }, 188 | "strikethrough": { 189 | "regex": "(~~)([^~]{1,})(~~)", 190 | "matchPosition": 2, 191 | "strikethroughStyle": 1, 192 | "isRevealOnCursorRange": true 193 | }, 194 | "strikethrough-left-tilde": { 195 | "regex": "(~~)([^~]{1,})(~~)", 196 | "matchPosition": 1, 197 | "isMarkdownCharacter": true, 198 | "isHiddenWithoutCursor": true, 199 | "color": "#00a6ce", 200 | "isRevealOnCursorRange": true 201 | }, 202 | "strikethrough-right-tilde": { 203 | "regex": "(~~)([^~]{1,})(~~)", 204 | "matchPosition": 3, 205 | "isMarkdownCharacter": true, 206 | "color": "#00a6ce", 207 | "isHiddenWithoutCursor": true, 208 | "isRevealOnCursorRange": true 209 | }, 210 | "codeblock": { 211 | "regex": "(```)([^```]{1,})(```)", 212 | "matchPosition": 2, 213 | "font": "AmazonEmberMono-Regular", 214 | "isRevealOnCursorRange": true 215 | }, 216 | "codeblock-left-codeblock": { 217 | "regex": "(```)([^```]{1,})(```)", 218 | "matchPosition": 1, 219 | "isMarkdownCharacter": true, 220 | "isHiddenWithoutCursor": true, 221 | "color": "#f8991c", 222 | "isRevealOnCursorRange": true 223 | }, 224 | "codeblock-right-codeblock": { 225 | "regex": "(```)([^```]{1,})(```)", 226 | "matchPosition": 3, 227 | "isMarkdownCharacter": true, 228 | "color": "#f8991c", 229 | "isHiddenWithoutCursor": true, 230 | "isRevealOnCursorRange": true 231 | } 232 | } 233 | } -------------------------------------------------------------------------------- /bin/The Thymes.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "The Thymes", 3 | "style": "Light", 4 | "author": { 5 | "name": "Blake Dunkel", 6 | "email": "blake.dunkel@hey.com" 7 | }, 8 | 9 | "editor": { 10 | "backgroundColor": "#F0F0F0", 11 | "altBackgroundColor": "#F8F8F8", 12 | "tintColor": "#326891", 13 | "tintColor2": "#DD3E3B", 14 | "textColor": "#000000", 15 | "toolbarBackgroundColor": "#D9D9D9", 16 | "toolbarIconColor": "#414141", 17 | "menuItemColor": "#414141", 18 | "shouldOverwriteFont": false 19 | }, 20 | 21 | "styles": { 22 | "body": { 23 | "font": "Helvetica", 24 | "size": 16, 25 | "color": "#000000" 26 | }, 27 | 28 | "title1": { 29 | "font": "Georgia", 30 | "color": "#000000", 31 | "size": 28 32 | }, 33 | 34 | "title2": { 35 | "font": "Georgia", 36 | "color": "#000000", 37 | "size": 24 38 | }, 39 | 40 | "title3": { 41 | "font": "Georgia", 42 | "color": "#000000", 43 | "size": 20 44 | }, 45 | 46 | "title-mark1": { 47 | "color": "#45000000", 48 | "size": 28, 49 | "font": "AvenirNext-DemiBold" 50 | }, 51 | 52 | "title-mark2": { 53 | "color": "#45000000", 54 | "size": 24, 55 | "font": "AvenirNext-DemiBold" 56 | }, 57 | 58 | "title-mark3": { 59 | "color": "#45000000", 60 | "size": 20, 61 | "font": "AvenirNext-DemiBold" 62 | }, 63 | 64 | "bold": { 65 | "font": "Helvetica-Bold" 66 | }, 67 | 68 | "bold-left-mark": { 69 | "color": "#45000000" 70 | }, 71 | 72 | "bold-right-mark": { 73 | "color": "#45000000" 74 | }, 75 | 76 | "italic": { 77 | "font": "Helvetica-Oblique" 78 | }, 79 | 80 | "italic-left-mark": { 81 | "color": "#45000000" 82 | }, 83 | 84 | "italic-right-mark": { 85 | "color": "#45000000" 86 | }, 87 | 88 | "boldItalic": { 89 | "font": "Helvetica-BoldOblique" 90 | }, 91 | 92 | "boldItalic-left-mark": { 93 | "color": "#45000000" 94 | }, 95 | 96 | "boldItalic-right-mark": { 97 | "color": "#45000000" 98 | }, 99 | 100 | "code": { 101 | "font": "Menlo-Regular", 102 | "color": "#d0021b", 103 | "size": 15 104 | }, 105 | 106 | "code-left-backtick": { 107 | "color": "#66d0021b" 108 | }, 109 | 110 | "code-right-backtick": { 111 | "color": "#66d0021b" 112 | }, 113 | 114 | "checked": { 115 | "headIndent": 33 116 | }, 117 | 118 | "todo": { 119 | "font": "noteplanstate", 120 | "color": "#d0021b", 121 | "headIndent": 33, 122 | "size": 16 123 | }, 124 | 125 | "checked-todo-characters": { 126 | "font": "noteplanstate", 127 | "headIndent": 33, 128 | "size": 16 129 | }, 130 | 131 | "checked-completed-mark": { 132 | "regex": "(^\\h*[\\*\\-]{1} |^\\h*[0-9]+[\\.\\)] )(\\[x\\] )", 133 | "matchPosition": 0, 134 | "color": "#66d0021b", 135 | "headIndent": 33 136 | }, 137 | 138 | "checked-completed-content": { 139 | "regex": "(^\\h*[\\*\\-]{1} |^\\h*[0-9]+[\\.\\)] )(\\[x\\] )(.*)", 140 | "matchPosition": 3, 141 | "color": "#000000", 142 | "strikethroughStyle": 1, 143 | "strikethroughColor": "#AA000000", 144 | "headIndent": 33 145 | }, 146 | 147 | "checked-scheduled": { 148 | "regex": "(^\\h*[\\*\\-]{1} |^\\h*[0-9]+[\\.\\)] )(\\[\\>\\] )", 149 | "matchPosition": 0, 150 | "color": "#AA326891", 151 | "headIndent": 33 152 | }, 153 | 154 | "checked-canceled": { 155 | "regex": "(^\\h*[\\*\\-]{1} |^\\h*[0-9]+[\\.\\)] )(\\[\\-\\] )(.*)", 156 | "matchPosition": 0, 157 | "color": "#a19d9d", 158 | "headIndent": 33 159 | }, 160 | 161 | "special-char": { 162 | "font": "Menlo-Regular" 163 | }, 164 | 165 | "tabbed": { 166 | "headIndent": 43 167 | }, 168 | 169 | "quote-mark": { 170 | "color": "#66d0021b", 171 | "font": "noteplanstate", 172 | "headIndent": 33, 173 | "size": 16 174 | }, 175 | 176 | "quote-content": { 177 | "color": "#555555", 178 | "headIndent": 33, 179 | "font": "Helvetica-Light" 180 | }, 181 | 182 | "highlighted": { 183 | "regex": "(::)([^:]{1,})(::)", 184 | "matchPosition": 2, 185 | "isRevealOnCursorRange": true, 186 | "backgroundColor": "#22d0021b" 187 | }, 188 | 189 | "highlighted-left-colon": { 190 | "regex": "(::)([^:]{1,})(::)", 191 | "matchPosition": 1, 192 | "isMarkdownCharacter": true, 193 | "isHiddenWithoutCursor": true, 194 | "isRevealOnCursorRange": true, 195 | "color": "#66d0021b", 196 | "backgroundColor": "#22d0021b" 197 | }, 198 | 199 | "highlighted-right-colon": { 200 | "regex": "(::)([^:]{1,})(::)", 201 | "matchPosition": 3, 202 | "isMarkdownCharacter": true, 203 | "isHiddenWithoutCursor": true, 204 | "isRevealOnCursorRange": true, 205 | "color": "#66d0021b", 206 | "backgroundColor": "#22d0021b" 207 | }, 208 | 209 | "strikethrough": { 210 | "regex": "(~~)([^:]{1,})(~~)", 211 | "matchPosition": 2, 212 | "isRevealOnCursorRange": true, 213 | "color": "#000000", 214 | "strikethroughStyle": 1, 215 | "strikethroughColor": "#AA000000" 216 | }, 217 | 218 | "strikethrough-left-tildes": { 219 | "regex": "(~~)([^:]{1,})(~~)", 220 | "matchPosition": 1, 221 | "isMarkdownCharacter": true, 222 | "isHiddenWithoutCursor": true, 223 | "isRevealOnCursorRange": true, 224 | "color": "#45000000" 225 | }, 226 | 227 | "strikethrough-right-tildes": { 228 | "regex": "(~~)([^:]{1,})(~~)", 229 | "matchPosition": 3, 230 | "isMarkdownCharacter": true, 231 | "isHiddenWithoutCursor": true, 232 | "isRevealOnCursorRange": true, 233 | "color": "#45000000" 234 | }, 235 | 236 | "link": {}, 237 | 238 | "schedule-to-date-link": {}, 239 | 240 | "done-date": {}, 241 | 242 | "schedule-from-date-link": {}, 243 | 244 | "note-title-link": {}, 245 | 246 | "hashtag": {}, 247 | 248 | "attag": {}, 249 | 250 | "phonenumber": {} 251 | } 252 | } -------------------------------------------------------------------------------- /bin/Things Dark.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "Things Dark", 3 | "style": "Dark", 4 | "author": { 5 | "name": "Brad Rokosz", 6 | "email": "hello@noteplan.co" 7 | }, 8 | 9 | "editor": { 10 | "backgroundColor": "#262829", 11 | "altBackgroundColor": "#202425", 12 | "tintColor": "#67acfe", 13 | "tintColor2": "#f1cf4b", 14 | "textColor":"#fafbfa", 15 | "toolbarBackgroundColor": "#383b3f", 16 | "toolbarIconColor": "#abafb4", 17 | "menuItemColor": "#fafbfa", 18 | "shouldOverwriteFont": true 19 | }, 20 | 21 | "styles": { 22 | 23 | "body": { 24 | "font": "AvenirNext-Regular", 25 | "size": 16, 26 | "color": "#fafbfa", 27 | }, 28 | 29 | "title1": { 30 | "color": "#fafbfa", 31 | "size": 28 32 | }, 33 | 34 | "title2": { 35 | "color": "#fafbfa", 36 | "size": 24 37 | }, 38 | 39 | "title3": { 40 | "color": "#fafbfa", 41 | "size": 20 42 | }, 43 | 44 | "title-mark1": { 45 | "color": "#7dc4a8", 46 | "size": 28, 47 | "font": "AvenirNext-DemiBold" 48 | }, 49 | 50 | "title-mark2": { 51 | "color": "#67acfe", 52 | "size": 24, 53 | "font": "AvenirNext-DemiBold" 54 | }, 55 | 56 | "title-mark3": { 57 | "color": "#67acfe", 58 | "size": 20, 59 | "font": "AvenirNext-DemiBold" 60 | }, 61 | 62 | "bold": { 63 | "type": "bold" 64 | }, 65 | 66 | "bold-left-mark": { 67 | "color": "#67acfe" 68 | }, 69 | 70 | "bold-right-mark": { 71 | "color": "#67acfe" 72 | }, 73 | 74 | "italic": { 75 | "type": "italic" 76 | }, 77 | 78 | "italic-left-mark": { 79 | "color": "#67acfe" 80 | }, 81 | 82 | "italic-right-mark": { 83 | "color": "#67acfe" 84 | }, 85 | 86 | "boldItalic": { 87 | "type": "bolditalic" 88 | }, 89 | 90 | "boldItalic-left-mark": { 91 | "color": "#67acfe" 92 | }, 93 | 94 | "boldItalic-right-mark": { 95 | "color": "#67acfe" 96 | }, 97 | 98 | "code": { 99 | "font": "Menlo-Regular", 100 | "color": "#67acfe", 101 | "size": 15 102 | }, 103 | 104 | "code-left-backtick": { 105 | "color": "#67acfe" 106 | }, 107 | 108 | "code-right-backtick": { 109 | "color": "#67acfe" 110 | }, 111 | 112 | "checked": { 113 | "regex": "(^\\h*[\\*\\-]{1} |^\\h*[0-9]+[\\.\\)] )(\\[x\\] )(.*)", 114 | "matchPosition": 0, 115 | "color": "#6e6f6f", 116 | "headIndent": 33 117 | }, 118 | 119 | "checked-canceled": { 120 | "regex": "(^\\h*[\\*\\-]{1} |^\\h*[0-9]+[\\.\\)] )(\\[\\-\\] )(.*)", 121 | "matchPosition": 0, 122 | "color": "#6e6f6f", 123 | "headIndent": 33, 124 | "strikethroughStyle": 1 125 | }, 126 | 127 | "checked-scheduled": { 128 | "regex": "(^\\h*[\\*\\-]{1} |^\\h*[0-9]+[\\.\\)] )(\\[\\>\\] )(.*)", 129 | "matchPosition": 0, 130 | "color": "#501379e1", 131 | "headIndent": 33 132 | }, 133 | 134 | "strikethrough": { 135 | "regex": "(~~)([^~]{1,})(~~)", 136 | "matchPosition": 2, 137 | "strikethroughStyle": 1, 138 | "isRevealOnCursorRange": true 139 | }, 140 | "strikethrough-left-tilde": { 141 | "regex": "(~~)([^~]{1,})(~~)", 142 | "matchPosition": 1, 143 | "isMarkdownCharacter": true, 144 | "isHiddenWithoutCursor": true, 145 | "color": "#660091f8", 146 | "isRevealOnCursorRange": true 147 | }, 148 | "strikethrough-right-tilde": { 149 | "regex": "(~~)([^~]{1,})(~~)", 150 | "matchPosition": 3, 151 | "isMarkdownCharacter": true, 152 | "color": "#660091f8", 153 | "isHiddenWithoutCursor": true, 154 | "isRevealOnCursorRange": true 155 | }, 156 | 157 | "todo": { 158 | "font": "noteplanstate", 159 | "color": "#67acfe", 160 | "headIndent": 33, 161 | "size": 16 162 | }, 163 | 164 | "checked-todo-characters": { 165 | "font": "noteplanstate", 166 | "headIndent": 33, 167 | "size": 16 168 | }, 169 | 170 | "special-char": { 171 | "font": "Menlo-Regular" 172 | }, 173 | 174 | "tabbed": { 175 | "headIndent": 43 176 | }, 177 | 178 | "quote-mark": { 179 | "color": "#4cbc5f", 180 | "font": "noteplanstate", 181 | "headIndent": 33, 182 | "size": 16 183 | }, 184 | 185 | "quote-content": { 186 | "color": "#4cbc5f", 187 | "type": "italic", 188 | "headIndent": 33 189 | }, 190 | 191 | "link": { 192 | 193 | }, 194 | 195 | "schedule-to-date-link": { 196 | 197 | }, 198 | 199 | "done-date": { 200 | 201 | }, 202 | 203 | "schedule-from-date-link": { 204 | 205 | }, 206 | 207 | "note-title-link": { 208 | 209 | }, 210 | 211 | "hashtag": { 212 | 213 | }, 214 | 215 | "attag": { 216 | 217 | }, 218 | 219 | "phonenumber": { 220 | 221 | }, 222 | 223 | "highlighted": { 224 | "regex": "(::)([^:]{1,})(::)", 225 | "matchPosition": 2, 226 | "isRevealOnCursorRange": true, 227 | "color": "#fee691", 228 | "backgroundColor": "#4f4a2e" 229 | }, 230 | 231 | "highlighted-left-colon": { 232 | "regex": "(::)([^:]{1,})(::)", 233 | "matchPosition": 1, 234 | "isMarkdownCharacter": true, 235 | "isHiddenWithoutCursor": true, 236 | "isRevealOnCursorRange": true, 237 | "color": "#fee691", 238 | "backgroundColor": "#4f4a2e", 239 | }, 240 | 241 | "highlighted-right-colon": { 242 | "regex": "(::)([^:]{1,})(::)", 243 | "matchPosition": 3, 244 | "isMarkdownCharacter": true, 245 | "isHiddenWithoutCursor": true, 246 | "isRevealOnCursorRange": true, 247 | "color": "#fee691", 248 | "backgroundColor": "#4f4a2e", 249 | } 250 | } 251 | } 252 | -------------------------------------------------------------------------------- /bin/Things.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "Things", 3 | "style": "Light", 4 | "author": { 5 | "name": "Pawel Kadysz", 6 | "email": "websites@kadysz.com" 7 | }, 8 | 9 | "editor": { 10 | "backgroundColor": "#ffffff", 11 | "altBackgroundColor": "#f9fafb", 12 | "tintColor": "#1379e1", 13 | "tintColor2": "#f1cf4b", 14 | "textColor":"#121417", 15 | "toolbarBackgroundColor": "#f9fafb", 16 | "toolbarIconColor": "#abafb4", 17 | "menuItemColor": "#383b3f", 18 | "shouldOverwriteFont": true 19 | }, 20 | 21 | "styles": { 22 | 23 | "body": { 24 | "font": "AvenirNext-Regular", 25 | "size": 16, 26 | "color": "#121417", 27 | }, 28 | 29 | "title1": { 30 | "color": "#25282c", 31 | "size": 28 32 | }, 33 | 34 | "title2": { 35 | "color": "#25282c", 36 | "size": 24 37 | }, 38 | 39 | "title3": { 40 | "color": "#25282c", 41 | "size": 20 42 | }, 43 | 44 | "title-mark1": { 45 | "color": "#40000000", 46 | "size": 28, 47 | "font": "AvenirNext-DemiBold" 48 | }, 49 | 50 | "title-mark2": { 51 | "color": "#40000000", 52 | "size": 24, 53 | "font": "AvenirNext-DemiBold" 54 | }, 55 | 56 | "title-mark3": { 57 | "color": "#40000000", 58 | "size": 20, 59 | "font": "AvenirNext-DemiBold" 60 | }, 61 | 62 | "bold": { 63 | "type": "bold" 64 | }, 65 | 66 | "bold-left-mark": { 67 | "color": "#40000000" 68 | }, 69 | 70 | "bold-right-mark": { 71 | "color": "#40000000" 72 | }, 73 | 74 | "italic": { 75 | "type": "italic" 76 | }, 77 | 78 | "italic-left-mark": { 79 | "color": "#40000000" 80 | }, 81 | 82 | "italic-right-mark": { 83 | "color": "#40000000" 84 | }, 85 | 86 | "boldItalic": { 87 | "type": "bolditalic" 88 | }, 89 | 90 | "boldItalic-left-mark": { 91 | "color": "#40000000" 92 | }, 93 | 94 | "boldItalic-right-mark": { 95 | "color": "#40000000" 96 | }, 97 | 98 | "code": { 99 | "font": "Menlo-Regular", 100 | "color": "#0091f8", 101 | "size": 15 102 | }, 103 | 104 | "code-left-backtick": { 105 | "color": "#660091f8" 106 | }, 107 | 108 | "code-right-backtick": { 109 | "color": "#660091f8" 110 | }, 111 | 112 | "checked": { 113 | "regex": "(^\\h*[\\*\\-]{1} |^\\h*[0-9]+[\\.\\)] )(\\[x\\] )(.*)", 114 | "matchPosition": 0, 115 | "color": "#7583868b", 116 | "headIndent": 33 117 | }, 118 | 119 | "checked-canceled": { 120 | "regex": "(^\\h*[\\*\\-]{1} |^\\h*[0-9]+[\\.\\)] )(\\[\\-\\] )(.*)", 121 | "matchPosition": 0, 122 | "color": "#c0c3c6", 123 | "headIndent": 33, 124 | "strikethroughStyle": 1 125 | }, 126 | 127 | "checked-scheduled": { 128 | "regex": "(^\\h*[\\*\\-]{1} |^\\h*[0-9]+[\\.\\)] )(\\[\\>\\] )(.*)", 129 | "matchPosition": 0, 130 | "color": "#501379e1", 131 | "headIndent": 33 132 | }, 133 | 134 | "todo": { 135 | "font": "noteplanstate", 136 | "color": "#2164bf", 137 | "headIndent": 33, 138 | "size": 16 139 | }, 140 | 141 | "checked-todo-characters": { 142 | "font": "noteplanstate", 143 | "headIndent": 33, 144 | "size": 16 145 | }, 146 | 147 | "special-char": { 148 | "font": "Menlo-Regular" 149 | }, 150 | 151 | "tabbed": { 152 | "headIndent": 43 153 | }, 154 | 155 | "quote-mark": { 156 | "color": "#c0e1d4", 157 | "font": "noteplanstate", 158 | "headIndent": 33, 159 | "size": 16 160 | }, 161 | 162 | "quote-content": { 163 | "color": "#85247c59", 164 | "type": "italic", 165 | "headIndent": 33 166 | }, 167 | 168 | "link": { 169 | 170 | }, 171 | 172 | "schedule-to-date-link": { 173 | 174 | }, 175 | 176 | "done-date": { 177 | 178 | }, 179 | 180 | "schedule-from-date-link": { 181 | 182 | }, 183 | 184 | "note-title-link": { 185 | 186 | }, 187 | 188 | "hashtag": { 189 | 190 | }, 191 | 192 | "attag": { 193 | 194 | }, 195 | 196 | "phonenumber": { 197 | 198 | }, 199 | 200 | "highlighted": { 201 | "regex": "(::)([^:]{1,})(::)", 202 | "matchPosition": 2, 203 | "isRevealOnCursorRange": true, 204 | "backgroundColor": "#75f7e494" 205 | }, 206 | 207 | "highlighted-left-colon": { 208 | "regex": "(::)([^:]{1,})(::)", 209 | "matchPosition": 1, 210 | "isMarkdownCharacter": true, 211 | "isHiddenWithoutCursor": true, 212 | "isRevealOnCursorRange": true, 213 | "color": "#cbad2d", 214 | "backgroundColor": "#75f7e494", 215 | }, 216 | 217 | "highlighted-right-colon": { 218 | "regex": "(::)([^:]{1,})(::)", 219 | "matchPosition": 3, 220 | "isMarkdownCharacter": true, 221 | "isHiddenWithoutCursor": true, 222 | "isRevealOnCursorRange": true, 223 | "color": "#cbad2d", 224 | "backgroundColor": "#75f7e494", 225 | } 226 | } 227 | } 228 | -------------------------------------------------------------------------------- /bin/Tomorrow Night.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "Tomorrow Night", 3 | "style": "Dark", 4 | "author": { 5 | "name": "Brad Rokosz", 6 | "email": "hello@noteplan.co" 7 | }, 8 | 9 | "editor": { 10 | "backgroundColor": "#1d1f21", 11 | "altBackgroundColor": "#1d1f21", 12 | "tintColor": "#8abeb7", 13 | "tintColor2": "#b294bb", 14 | "textColor": "#c5c8c6", 15 | "toolbarBackgroundColor": "#1d1f21", 16 | "toolbarIconColor": "#c5c8c6", 17 | "menuItemColor": "#c5c8c6", 18 | "shouldOverwriteFont": true 19 | }, 20 | 21 | "styles": { 22 | "body": { 23 | "font": "AvenirNext-Regular", 24 | "size": 16, 25 | "color": "#c5c8c6" 26 | }, 27 | 28 | "title1": { 29 | "color": "#b294bb", 30 | "size": 28, 31 | "font": "AvenirNext-DemiBold" 32 | }, 33 | 34 | "title2": { 35 | "color": "#81a2be", 36 | "size": 24, 37 | "font": "AvenirNext-DemiBold" 38 | }, 39 | 40 | "title3": { 41 | "color": "#f0c674", 42 | "size": 20, 43 | "font": "AvenirNext-DemiBold" 44 | }, 45 | 46 | "title-mark1": { 47 | "color": "#f0c674", 48 | "size": 28, 49 | "font": "AvenirNext-DemiBold" 50 | }, 51 | 52 | "title-mark2": { 53 | "color": "#8abeb7", 54 | "size": 24, 55 | "font": "AvenirNext-DemiBold" 56 | }, 57 | 58 | "title-mark3": { 59 | "color": "#b294bb", 60 | "size": 20, 61 | "font": "AvenirNext-DemiBold" 62 | }, 63 | 64 | "bold": { 65 | "color": "#de935f", 66 | "font": "AvenirNext-Bold" 67 | }, 68 | 69 | "bold-left-mark": { 70 | "color": "#66de935f" 71 | }, 72 | 73 | "bold-right-mark": { 74 | "color": "#66de935f" 75 | }, 76 | 77 | "italic": { 78 | "color": "#b5bd68", 79 | "font": "AvenirNext-Italic" 80 | }, 81 | 82 | "italic-left-mark": { 83 | "color": "#66b5bd68" 84 | }, 85 | 86 | "italic-right-mark": { 87 | "color": "#66b5bd68" 88 | }, 89 | 90 | "boldItalic": { 91 | "font": "AvenirNext-BoldItalic" 92 | }, 93 | 94 | "boldItalic-left-mark": { 95 | "color": "#66CC6666" 96 | }, 97 | 98 | "boldItalic-right-mark": { 99 | "color": "#66CC6666" 100 | }, 101 | 102 | "code": { 103 | "font": "Menlo-Regular", 104 | "color": "#969896", 105 | "size": 15 106 | }, 107 | 108 | "code-left-backtick": { 109 | "color": "#66969896" 110 | }, 111 | 112 | "code-right-backtick": { 113 | "color": "#66969896" 114 | }, 115 | 116 | "checked": { 117 | "headIndent": 33 118 | }, 119 | 120 | "todo": { 121 | "font": "noteplanstate", 122 | "color": "#cc6666", 123 | "headIndent": 33, 124 | "size": 16 125 | }, 126 | 127 | "checked-todo-characters": { 128 | "font": "noteplanstate", 129 | "headIndent": 33, 130 | "size": 16 131 | }, 132 | 133 | "checked-completed-mark": { 134 | "regex": "(^\\h*[\\*\\-]{1} |^\\h*[0-9]+[\\.\\)] )(\\[x\\] )", 135 | "matchPosition": 0, 136 | "color": "#b5bd68", 137 | "headIndent": 33 138 | }, 139 | 140 | "checked-completed-content": { 141 | "regex": "(^\\h*[\\*\\-]{1} |^\\h*[0-9]+[\\.\\)] )(\\[x\\] )(.*)", 142 | "matchPosition": 3, 143 | "color": "#AAc5c8c6", 144 | "headIndent": 33 145 | }, 146 | 147 | "checked-scheduled": { 148 | "regex": "(^\\h*[\\*\\-]{1} |^\\h*[0-9]+[\\.\\)] )(\\[\\>\\] )", 149 | "matchPosition": 0, 150 | "color": "#AAf0c674", 151 | "headIndent": 33 152 | }, 153 | 154 | "checked-canceled": { 155 | "regex": "(^\\h*[\\*\\-]{1} |^\\h*[0-9]+[\\.\\)] )(\\[\\-\\] )(.*)", 156 | "matchPosition": 0, 157 | "color": "#cc6666", 158 | "headIndent": 33 159 | }, 160 | 161 | "special-char": { 162 | "font": "Menlo-Regular" 163 | }, 164 | 165 | "tabbed": { 166 | "headIndent": 43 167 | }, 168 | 169 | "quote-mark": { 170 | "color": "#b294bb", 171 | "font": "noteplanstate", 172 | "headIndent": 33, 173 | "size": 16 174 | }, 175 | 176 | "quote-content": { 177 | "color": "#c5c8c6", 178 | "type": "italic", 179 | "headIndent": 33 180 | }, 181 | 182 | "highlighted": { 183 | "regex": "(::)([^:]{1,})(::)", 184 | "matchPosition": 2, 185 | "isRevealOnCursorRange": true, 186 | "color": "1d1f21", 187 | "backgroundColor": "#de935f" 188 | }, 189 | 190 | "highlighted-left-colon": { 191 | "regex": "(::)([^:]{1,})(::)", 192 | "matchPosition": 1, 193 | "isMarkdownCharacter": true, 194 | "isHiddenWithoutCursor": true, 195 | "isRevealOnCursorRange": true, 196 | "color": "#77de935f", 197 | "backgroundColor": "#1d1f21" 198 | }, 199 | 200 | "highlighted-right-colon": { 201 | "regex": "(::)([^:]{1,})(::)", 202 | "matchPosition": 3, 203 | "isMarkdownCharacter": true, 204 | "isHiddenWithoutCursor": true, 205 | "isRevealOnCursorRange": true, 206 | "color": "#77de935f", 207 | "backgroundColor": "#1d1f21" 208 | }, 209 | 210 | "flagged-1": { 211 | "regex": "(^|\\v)(\\h*(\\*|-)\\h*(\\[ \\]\\h+|\\h+)(\\!{1}\\h+.*))($|\\v)", 212 | "matchPosition": 5, 213 | "backgroundColor": "#22cc6666", 214 | "headIndent": 33 215 | }, 216 | 217 | "flagged-2": { 218 | "regex": "(^|\\v)(\\h*(\\*|-)\\h*(\\[ \\]\\h+|\\h+)(\\!{2}\\h+.*))($|\\v)", 219 | "matchPosition": 5, 220 | "backgroundColor": "#55cc6666", 221 | "headIndent": 33 222 | }, 223 | 224 | "flagged-3": { 225 | "regex": "(^|\\v)(\\h*(\\*|-)\\h*(\\[ \\]\\h+|\\h+)(\\!{3}\\h+.*))($|\\v)", 226 | "matchPosition": 5, 227 | "backgroundColor": "#AAcc6666", 228 | "headIndent": 33 229 | }, 230 | 231 | "strikethrough": { 232 | "regex": "(~~)([^:]{1,})(~~)", 233 | "matchPosition": 2, 234 | "isRevealOnCursorRange": true, 235 | "color": "#AAc5c8c6", 236 | "strikethroughStyle": 1, 237 | "strikethroughColor": "#AAc5c8c6" 238 | }, 239 | 240 | "strikethrough-left-tildes": { 241 | "regex": "(~~)([^:]{1,})(~~)", 242 | "matchPosition": 1, 243 | "isMarkdownCharacter": true, 244 | "isHiddenWithoutCursor": true, 245 | "isRevealOnCursorRange": true, 246 | "color": "#66c5c8c6" 247 | }, 248 | 249 | "strikethrough-right-tildes": { 250 | "regex": "(~~)([^:]{1,})(~~)", 251 | "matchPosition": 3, 252 | "isMarkdownCharacter": true, 253 | "isHiddenWithoutCursor": true, 254 | "isRevealOnCursorRange": true, 255 | "color": "#66c5c8c6" 256 | }, 257 | 258 | "link": {}, 259 | 260 | "schedule-to-date-link": {}, 261 | 262 | "done-date": {}, 263 | 264 | "schedule-from-date-link": {}, 265 | 266 | "note-title-link": {}, 267 | 268 | "hashtag": {}, 269 | 270 | "attag": {}, 271 | 272 | "phonenumber": {} 273 | } 274 | } 275 | -------------------------------------------------------------------------------- /bin/Toothpaste Pro.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "Toothpaste Pro", 3 | "style": "Dark", 4 | "author": { 5 | "name": "Blake Dunkel", 6 | "email": "blake.dunkel@hey.com" 7 | }, 8 | 9 | "editor": { 10 | "backgroundColor": "#222E33", 11 | "altBackgroundColor": "#2B3940", 12 | "tintColor": "#E9C062", 13 | "tintColor2": "#73B3C0", 14 | "textColor": "#DAE3E8", 15 | "toolbarBackgroundColor": "#2B3940", 16 | "toolbarIconColor": "#c5c5c0", 17 | "menuItemColor": "#c5c5c0", 18 | "shouldOverwriteFont": true 19 | }, 20 | 21 | "styles": { 22 | "body": { 23 | "font": "AvenirNext-Regular", 24 | "size": 16, 25 | "color": "#DAE3E8" 26 | }, 27 | 28 | "title1": { 29 | "color": "#96CBFE", 30 | "size": 28, 31 | "font": "AvenirNext-DemiBold" 32 | }, 33 | 34 | "title2": { 35 | "color": "#96CBFE", 36 | "size": 24, 37 | "font": "AvenirNext-DemiBold" 38 | }, 39 | 40 | "title3": { 41 | "color": "#96CBFE", 42 | "size": 20, 43 | "font": "AvenirNext-DemiBold" 44 | }, 45 | 46 | "title-mark1": { 47 | "color": "#6696CBFE", 48 | "size": 28, 49 | "font": "AvenirNext-DemiBold" 50 | }, 51 | 52 | "title-mark2": { 53 | "color": "#6696CBFE", 54 | "size": 24, 55 | "font": "AvenirNext-DemiBold" 56 | }, 57 | 58 | "title-mark3": { 59 | "color": "#6696CBFE", 60 | "size": 20, 61 | "font": "AvenirNext-DemiBold" 62 | }, 63 | 64 | "bold": { 65 | "color": "#CC6666", 66 | "font": "AvenirNext-Bold" 67 | }, 68 | 69 | "bold-left-mark": { 70 | "color": "#66CC6666" 71 | }, 72 | 73 | "bold-right-mark": { 74 | "color": "#66CC6666" 75 | }, 76 | 77 | "italic": { 78 | "color": "#96CBFE", 79 | "font": "AvenirNext-Italic" 80 | }, 81 | 82 | "italic-left-mark": { 83 | "color": "#6696CBFE" 84 | }, 85 | 86 | "italic-right-mark": { 87 | "color": "#6696CBFE" 88 | }, 89 | 90 | "boldItalic": { 91 | "font": "AvenirNext-BoldItalic" 92 | }, 93 | 94 | "boldItalic-left-mark": { 95 | "color": "#66CC6666" 96 | }, 97 | 98 | "boldItalic-right-mark": { 99 | "color": "#66CC6666" 100 | }, 101 | 102 | "code": { 103 | "font": "Menlo-Regular", 104 | "color": "#CC6666", 105 | "size": 15 106 | }, 107 | 108 | "code-left-backtick": { 109 | "color": "#66CC6666" 110 | }, 111 | 112 | "code-right-backtick": { 113 | "color": "#66CC6666" 114 | }, 115 | 116 | "checked": { 117 | "headIndent": 33 118 | }, 119 | 120 | "todo": { 121 | "font": "noteplanstate", 122 | "color": "#CC6666", 123 | "headIndent": 33, 124 | "size": 16 125 | }, 126 | 127 | "checked-todo-characters": { 128 | "font": "noteplanstate", 129 | "headIndent": 33, 130 | "size": 16 131 | }, 132 | 133 | "checked-completed-mark": { 134 | "regex": "(^\\h*[\\*\\-]{1} |^\\h*[0-9]+[\\.\\)] )(\\[x\\] )", 135 | "matchPosition": 0, 136 | "color": "#9DC777", 137 | "headIndent": 33 138 | }, 139 | 140 | "checked-completed-content": { 141 | "regex": "(^\\h*[\\*\\-]{1} |^\\h*[0-9]+[\\.\\)] )(\\[x\\] )(.*)", 142 | "matchPosition": 3, 143 | "color": "#AAc5c5c0", 144 | "headIndent": 33 145 | }, 146 | 147 | "checked-scheduled": { 148 | "regex": "(^\\h*[\\*\\-]{1} |^\\h*[0-9]+[\\.\\)] )(\\[\\>\\] )", 149 | "matchPosition": 0, 150 | "color": "#AAE9C062", 151 | "headIndent": 33 152 | }, 153 | 154 | "checked-canceled": { 155 | "regex": "(^\\h*[\\*\\-]{1} |^\\h*[0-9]+[\\.\\)] )(\\[\\-\\] )(.*)", 156 | "matchPosition": 0, 157 | "color": "#AAc5c5c0", 158 | "headIndent": 33 159 | }, 160 | 161 | "special-char": { 162 | "font": "Menlo-Regular" 163 | }, 164 | 165 | "tabbed": { 166 | "headIndent": 43 167 | }, 168 | 169 | "quote-mark": { 170 | "color": "#9DC777", 171 | "font": "noteplanstate", 172 | "headIndent": 33, 173 | "size": 16 174 | }, 175 | 176 | "quote-content": { 177 | "color": "#c5c5c0", 178 | "type": "italic", 179 | "headIndent": 33 180 | }, 181 | 182 | "highlighted": { 183 | "regex": "(::)([^:]{1,})(::)", 184 | "matchPosition": 2, 185 | "isRevealOnCursorRange": true, 186 | "backgroundColor": "#7745A2E5" 187 | }, 188 | 189 | "highlighted-left-colon": { 190 | "regex": "(::)([^:]{1,})(::)", 191 | "matchPosition": 1, 192 | "isMarkdownCharacter": true, 193 | "isHiddenWithoutCursor": true, 194 | "isRevealOnCursorRange": true, 195 | "color": "#AA45A2E5", 196 | "backgroundColor": "#7745A2E5" 197 | }, 198 | 199 | "highlighted-right-colon": { 200 | "regex": "(::)([^:]{1,})(::)", 201 | "matchPosition": 3, 202 | "isMarkdownCharacter": true, 203 | "isHiddenWithoutCursor": true, 204 | "isRevealOnCursorRange": true, 205 | "color": "#AA45A2E5", 206 | "backgroundColor": "#7745A2E5" 207 | }, 208 | 209 | "flagged-1": { 210 | "regex": "(^|\\v)(\\h*(\\*|-)\\h*(\\[ \\]\\h+|\\h+)(\\!{1}\\h+.*))($|\\v)", 211 | "matchPosition": 5, 212 | "backgroundColor": "#22D0021B", 213 | "headIndent": 33 214 | }, 215 | 216 | "flagged-2": { 217 | "regex": "(^|\\v)(\\h*(\\*|-)\\h*(\\[ \\]\\h+|\\h+)(\\!{2}\\h+.*))($|\\v)", 218 | "matchPosition": 5, 219 | "backgroundColor": "#55D0021B", 220 | "headIndent": 33 221 | }, 222 | 223 | "flagged-3": { 224 | "regex": "(^|\\v)(\\h*(\\*|-)\\h*(\\[ \\]\\h+|\\h+)(\\!{3}\\h+.*))($|\\v)", 225 | "matchPosition": 5, 226 | "backgroundColor": "#AAD0021B", 227 | "headIndent": 33 228 | }, 229 | 230 | "strikethrough": { 231 | "regex": "(~~)([^:]{1,})(~~)", 232 | "matchPosition": 2, 233 | "isRevealOnCursorRange": true, 234 | "color": "#AAc5c5c0", 235 | "strikethroughStyle": 1, 236 | "strikethroughColor": "#AAc5c5c0" 237 | }, 238 | 239 | "strikethrough-left-tildes": { 240 | "regex": "(~~)([^:]{1,})(~~)", 241 | "matchPosition": 1, 242 | "isMarkdownCharacter": true, 243 | "isHiddenWithoutCursor": true, 244 | "isRevealOnCursorRange": true, 245 | "color": "#66c5c5c0" 246 | }, 247 | 248 | "strikethrough-right-tildes": { 249 | "regex": "(~~)([^:]{1,})(~~)", 250 | "matchPosition": 3, 251 | "isMarkdownCharacter": true, 252 | "isHiddenWithoutCursor": true, 253 | "isRevealOnCursorRange": true, 254 | "color": "#66c5c5c0" 255 | }, 256 | 257 | "link": {}, 258 | 259 | "schedule-to-date-link": {}, 260 | 261 | "done-date": {}, 262 | 263 | "schedule-from-date-link": {}, 264 | 265 | "note-title-link": {}, 266 | 267 | "hashtag": {}, 268 | 269 | "attag": {}, 270 | 271 | "phonenumber": {} 272 | } 273 | } 274 | -------------------------------------------------------------------------------- /bin/WikiWords.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "WikiWords", 3 | "style": "Light", 4 | "author": { 5 | "name": "NotePlan", 6 | "email": "hello@noteplan.co" 7 | }, 8 | 9 | "editor": { 10 | "backgroundColor": "#FAFAFA", 11 | "altBackgroundColor": "#F2F2F2", 12 | "tintColor": "#38B6B3", 13 | "tintColor2": "#FF5162", 14 | "textColor":"#333333", 15 | "toolbarBackgroundColor": "#DCDCDC", 16 | "toolbarIconColor": "#666666", 17 | "menuItemColor": "#666666", 18 | "shouldOverwriteFont": true 19 | }, 20 | 21 | "styles": { 22 | "wikiword-link": { 23 | "regex": "(?\\] )(.*)", 110 | "matchPosition": 0, 111 | "color": "#88AAB4B8", 112 | "headIndent": 33 113 | }, 114 | "todo": { 115 | "font": "noteplanstate", 116 | "color": "#7F888D", 117 | "headIndent": 33, 118 | "size": 16 119 | }, 120 | "checked-todo-characters": { 121 | "font": "noteplanstate", 122 | "headIndent": 33, 123 | "size": 16 124 | }, 125 | "special-char": { 126 | "font": "Menlo-Regular" 127 | }, 128 | "tabbed": { 129 | "headIndent": 43 130 | }, 131 | "quote-mark": { 132 | "color": "#AAB4B8", 133 | "font": "noteplanstate", 134 | "headIndent": 33, 135 | "size": 16 136 | }, 137 | "quote-content": { 138 | "color": "#BDC6CB", 139 | "type": "italic", 140 | "headIndent": 33 141 | }, 142 | "link": {}, 143 | "schedule-to-date-link": {}, 144 | "done-date": {}, 145 | "schedule-from-date-link": {}, 146 | "note-title-link": {}, 147 | "hashtag": {}, 148 | "attag": {}, 149 | "phonenumber": {}, 150 | "highlighted": { 151 | "regex": "(::)([^:]{1,})(::)", 152 | "matchPosition": 2, 153 | "isRevealOnCursorRange": true, 154 | "backgroundColor": "#77879195" 155 | }, 156 | "highlighted-left-colon": { 157 | "regex": "(::)([^:]{1,})(::)", 158 | "matchPosition": 1, 159 | "isMarkdownCharacter": true, 160 | "isHiddenWithoutCursor": true, 161 | "isRevealOnCursorRange": true, 162 | "color": "#AA45A2E5", 163 | "backgroundColor": "#77879195" 164 | }, 165 | "highlighted-right-colon": { 166 | "regex": "(::)([^:]{1,})(::)", 167 | "matchPosition": 3, 168 | "isMarkdownCharacter": true, 169 | "isHiddenWithoutCursor": true, 170 | "isRevealOnCursorRange": true, 171 | "color": "#AA45A2E5", 172 | "backgroundColor": "#77879195" 173 | }, 174 | "flagged-1": { 175 | "regex": "(^|\\v)(\\h*(\\*|-)\\h*(\\[ \\]\\h+|\\h+)\\!{1}\\h+.*)($|\\v)", 176 | "matchPosition": 2, 177 | "backgroundColor": "#223C4549", 178 | "headIndent": 33 179 | }, 180 | "flagged-2": { 181 | "regex": "(^|\\v)(\\h*(\\*|-)\\h*(\\[ \\]\\h+|\\h+)\\!{2}\\h+.*)($|\\v)", 182 | "matchPosition": 2, 183 | "backgroundColor": "#553C4549", 184 | "headIndent": 33 185 | }, 186 | "flagged-3": { 187 | "regex": "(^|\\v)(\\h*(\\*|-)\\h*(\\[ \\]\\h+|\\h+)\\!{3}\\h+.*)($|\\v)", 188 | "matchPosition": 2, 189 | "backgroundColor": "#AA3C4549", 190 | "headIndent": 33 191 | }, 192 | "strikethrough": { 193 | "regex": "(^|[\\W_])(?:(?!\\1)|(?=^))((\\~|_)\\3)(?=\\S)(.*?\\S)(\\3\\3)(?!\\2)(?=[\\W_]|$)", 194 | "matchPosition": 4, 195 | "strikethroughStyle": 1, 196 | "isRevealOnCursorRange": true, 197 | "color": "#AACBCCC6", 198 | "strikethroughColor": "#C5CDD2" 199 | }, 200 | "strikethrough-left-tilde": { 201 | "regex": "(^|[\\W_])(?:(?!\\1)|(?=^))((\\~|_)\\3)(?=\\S)(.*?\\S)(\\3\\3)(?!\\2)(?=[\\W_]|$)", 202 | "matchPosition": 2, 203 | "isMarkdownCharacter": true, 204 | "isHiddenWithoutCursor": true, 205 | "isRevealOnCursorRange": true, 206 | "color": "#44C5CDD2" 207 | }, 208 | "strikethrough-right-tilde": { 209 | "regex": "(^|[\\W_])(?:(?!\\1)|(?=^))(\\~|_)\\2(?=\\S)(.*?\\S)(\\2\\2)(?!\\2)(?=[\\W_]|$)", 210 | "matchPosition": 4, 211 | "isMarkdownCharacter": true, 212 | "isHiddenWithoutCursor": true, 213 | "isRevealOnCursorRange": true, 214 | "color": "#44C5CDD2" 215 | }, 216 | "underline": { 217 | "regex": "(^|[\\W_])(?:(?!\\1)|(?=^))(\\~|_)(?=\\S)((?:(?!\\2).)*?\\S)(\\2)(?!\\2)(?=[\\W_]|$)", 218 | "matchPosition": 3, 219 | "isRevealOnCursorRange": true, 220 | "underlineStyle": 1, 221 | "underlineColor": "#C9D3D8" 222 | }, 223 | "underline-left-tilde": { 224 | "regex": "(^|[\\W_])(?:(?!\\1)|(?=^))(\\~|_)(?=\\S)((?:(?!\\2).)*?\\S)(\\2)(?!\\2)(?=[\\W_]|$)", 225 | "matchPosition": 2, 226 | "isMarkdownCharacter": true, 227 | "isHiddenWithoutCursor": true, 228 | "isRevealOnCursorRange": true, 229 | "color": "#44C9D3D8" 230 | }, 231 | "underline-right-tilde": { 232 | "regex": "(^|[\\W_])(?:(?!\\1)|(?=^))(\\~|_)(?=\\S)((?:(?!\\2).)*?\\S)(\\2)(?!\\2)(?=[\\W_]|$)", 233 | "matchPosition": 4, 234 | "isMarkdownCharacter": true, 235 | "isHiddenWithoutCursor": true, 236 | "isRevealOnCursorRange": true, 237 | "color": "#44C9D3D8" 238 | } 239 | } 240 | } -------------------------------------------------------------------------------- /bin/rB One.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "rB One", 3 | "style": "Quattro Light", 4 | "author": { 5 | "name": "Rhubarb", 6 | "email": "" 7 | }, 8 | "editor": { 9 | "backgroundColor": "#FFFFFF", 10 | "altBackgroundColor": "#F8F8F8", 11 | "tintColor": "#C0C0C0", 12 | "tintColor2": "#C0C0C0", 13 | "textColor": "#000000", 14 | "toolbarBackgroundColor": "#FFFFFF", 15 | "toolbarIconColor": "#000000", 16 | "menuItemColor": "#000000", 17 | "shouldOverwriteFont": false 18 | }, 19 | "styles": { 20 | "body": { 21 | "font": "iAWriterQuattroS-Regular", 22 | "size": 16, 23 | "color": "#000000" 24 | }, 25 | "title1": { 26 | "color": "#000000", 27 | "size": 16, 28 | "font": "iAWriterQuattroS-Bold" 29 | }, 30 | "title2": { 31 | "color": "#000000", 32 | "size": 16, 33 | "font": "iAWriterQuattroS-Bold" 34 | }, 35 | "title3": { 36 | "color": "#000000", 37 | "size": 16, 38 | "font": "iAWriterQuattroS-Bold" 39 | }, 40 | "title-mark1": { 41 | "paragraphSpacingBefore": 20, 42 | "color": "#000000", 43 | "size": 16, 44 | "font": "iAWriterQuattroS-Bold" 45 | }, 46 | "title-mark2": { 47 | "paragraphSpacingBefore": 15, 48 | "color": "#000000", 49 | "size": 16, 50 | "font": "iAWriterQuattroS-Bold" 51 | }, 52 | "title-mark3": { 53 | "paragraphSpacingBefore": 10, 54 | "color": "#000000", 55 | "size": 16, 56 | "font": "iAWriterQuattroS-Bold" 57 | }, 58 | "bold": { 59 | "font": "iAWriterQuattroS-Bold" 60 | }, 61 | "bold-left-mark": { 62 | }, 63 | "bold-right-mark": { 64 | }, 65 | "italic": { 66 | "font": "iAWriterQuattroS-Italic" 67 | }, 68 | "italic-left-mark": { 69 | }, 70 | "italic-right-mark": { 71 | }, 72 | "boldItalic": { 73 | "font": "iAWriterQuattroS-BoldItalic" 74 | }, 75 | "boldItalic-left-mark": { 76 | }, 77 | "boldItalic-right-mark": { 78 | }, 79 | "code": { 80 | "font": "iAWriterQuattroS-Regular", 81 | "backgroundColor": "#F8F8F8", 82 | "size": 16 83 | }, 84 | "code-left-backtick": { 85 | "backgroundColor": "#F8F8F8" 86 | }, 87 | "code-right-backtick": { 88 | "backgroundColor": "#F8F8F8" 89 | }, 90 | "checked": { 91 | "color": "#C0C0C0", 92 | "headIndent": 33, 93 | "strikethroughStyle": 1 94 | }, 95 | "todo": { 96 | "font": "iAWriterQuattroS-Regular", 97 | "color": "#000000", 98 | "headIndent": 33, 99 | "size": 15 100 | }, 101 | "checked-todo-characters": { 102 | "font": "iAWriterQuattroS-Regular", 103 | "headIndent": 33, 104 | "size": 15 105 | }, 106 | "special-char": { 107 | "font": "iAWriterQuattroS-Regular" 108 | }, 109 | "tabbed": { 110 | "headIndent": 43 111 | }, 112 | "quote-mark": { 113 | "color": "#C0C0C0", 114 | "font": "iAWriterQuattroS-Regular", 115 | "headIndent": 33 116 | }, 117 | "quote-content": { 118 | "headIndent": 33 119 | }, 120 | "link": { 121 | }, 122 | "schedule-to-date-link": { 123 | }, 124 | "done-date": { 125 | }, 126 | "schedule-from-date-link": { 127 | }, 128 | "note-title-link": { 129 | }, 130 | "hashtag": { 131 | "color": "#000000", 132 | "backgroundColor": "#F8F8F8" 133 | }, 134 | "attag": { 135 | "color": "#000000", 136 | "backgroundColor": "#F8F8F8" 137 | }, 138 | "phonenumber": { 139 | }, 140 | "highlighted-colon-left": { 141 | "regex": "(::)([^:]{1,})(::)", 142 | "matchPosition": 1, 143 | "isMarkdownCharacter": true, 144 | "isHiddenWithoutCursor": true, 145 | "isRevealOnCursorRange": true, 146 | "backgroundColor": "#fde666" 147 | }, 148 | "highlighted-colon-text": { 149 | "regex": "(::)([^:]{1,})(::)", 150 | "matchPosition": 2, 151 | "isRevealOnCursorRange": true, 152 | "backgroundColor": "#fde666" 153 | }, 154 | "highlighted-colon-right": { 155 | "regex": "(::)([^:]{1,})(::)", 156 | "matchPosition": 3, 157 | "isMarkdownCharacter": true, 158 | "isHiddenWithoutCursor": true, 159 | "isRevealOnCursorRange": true, 160 | "backgroundColor": "#fde666" 161 | }, 162 | "highlighted-equals-left": { 163 | "regex": "(==)([^=]{1,})(==)", 164 | "matchPosition": 1, 165 | "isMarkdownCharacter": true, 166 | "isHiddenWithoutCursor": true, 167 | "isRevealOnCursorRange": true, 168 | "backgroundColor": "#fde666" 169 | }, 170 | "highlighted-equals-text": { 171 | "regex": "(==)([^=]{1,})(==)", 172 | "matchPosition": 2, 173 | "isRevealOnCursorRange": true, 174 | "backgroundColor": "#fde666" 175 | }, 176 | "highlighted-equals-right": { 177 | "regex": "(==)([^:]{1,})(==)", 178 | "matchPosition": 3, 179 | "isMarkdownCharacter": true, 180 | "isHiddenWithoutCursor": true, 181 | "isRevealOnCursorRange": true, 182 | "backgroundColor": "#fde666" 183 | }, 184 | "strikethrough": { 185 | "regex": "(~~)([^~]{1,})(~~)", 186 | "matchPosition": 2, 187 | "color": "#808080", 188 | "isRevealOnCursorRange": true, 189 | "strikethroughStyle": 1 190 | }, 191 | "strikethrough-left": { 192 | "regex": "(~~)([^~]{1,})(~~)", 193 | "matchPosition": 1, 194 | "color": "#808080", 195 | "isMarkdownCharacter": true, 196 | "isHiddenWithoutCursor": true, 197 | "isRevealOnCursorRange": true, 198 | "strikethroughStyle": 1 199 | }, 200 | "strikethrough-right": { 201 | "regex": "(~~)([^~]{1,})(~~)", 202 | "matchPosition": 3, 203 | "color": "#808080", 204 | "isMarkdownCharacter": true, 205 | "isHiddenWithoutCursor": true, 206 | "isRevealOnCursorRange": true, 207 | "strikethroughStyle": 1 208 | } 209 | } 210 | } -------------------------------------------------------------------------------- /contributing.md: -------------------------------------------------------------------------------- 1 | # Contributing 2 | Made something beautiful? Think of a way to improve an existing theme? Here's how to help out. 3 | 4 | # How to contribute 5 | 6 | Prerequisites: 7 | 8 | - Familiarity with [pull requests](https://help.github.com/articles/using-pull-requests) and [issues](https://guides.github.com/features/issues/). 9 | - Knowledge of [Markdown](https://help.github.com/articles/markdown-basics/) for editing `.md` documents. 10 | - Knowledge of [JSON](https://codeblogmoney.com/what-is-json/) and for editing `.json` themes. 11 | - Knowledge of [regex](https://www.sitepoint.com/learn-regex/) for adding and editing custom theme functionality (this is optional). 12 | 13 | In particular, this community seeks the following types of contributions: 14 | 15 | - **Themes**: modify an existing theme or add your own to have your work displayed. 16 | - **Ideas**: We're looking for better ways to preview and create themes for people that might not have solid coding abilities but are passionate about customizing NotePlan. 17 | - **Copy editing**: fix typos, clarify functions, and generally improve the quality of the themes. 18 | - **Formatting**: help keep theme content easy to read with consistent formatting. 19 | 20 | # Contributing 21 | To add a theme to this repository: 22 | 23 | - Create a pull request and add your completed and tested theme to the `bin` folder. If your theme is still a work in progress, please limit your additions to the `src` folder. 24 | - Create a preview of your theme and add it to the `img` folder. Here's how I create them: 25 | 1. Add the custom theme to NotePlan Theme folder and open `NotePlan > Preferences > Themes`. 26 | 2. Activate your new custom theme. It should have a border around the preview. 27 | 3. Screenshot **just** the active theme preview from the list and open the image in an image editor. 28 | 4. Remove the background and trim the image to the outline of the active border. This can be accomplished in most editing tools by trimming transparent pixels. 29 | 5. Resize the preview to be `505px` wide and maintain aspect ratio to get the automatic height. 30 | 6. Name your new preview `.png` and add to the `img` folder. 31 | * Update the [readme.md](readme.md) at the root of this repo with the addition of your theme to the preview list. Use the following format: 32 | ``` 33 | ## Base Theme Name (not each variant) 34 | ![](/img/themename.png) 35 | ``` 36 | 7. Submit your PR with comments on what you added or changed. 37 | 38 | # Conduct 39 | 40 | We are committed to providing a friendly, safe and welcoming environment for all, regardless of gender, sexual orientation, disability, ethnicity, religion, or similar personal characteristic. 41 | 42 | On Discord, please avoid using overtly sexual nicknames or other nicknames that might detract from a friendly, safe and welcoming environment for all. 43 | 44 | Please be kind and courteous. There's no need to be mean or rude. Respect that people have differences of opinion and that every design or implementation choice carries a trade-off and numerous costs. There is seldom a right answer, merely an optimal answer given a set of values and circumstances. 45 | 46 | Please keep unstructured critique to a minimum. If you have solid ideas you want to experiment with, make a fork and see how it works. 47 | 48 | We will exclude you from interaction if you insult, demean or harass anyone. That is not welcome behavior. We interpret the term "harassment" as including the definition in the [Citizen Code of Conduct](http://citizencodeofconduct.org/); if you have any lack of clarity about what might be included in that concept, please read their definition. In particular, we don't tolerate behavior that excludes people in socially marginalized groups. 49 | 50 | Private harassment is also unacceptable. No matter who you are, if you feel you have been or are being harassed or made uncomfortable by a community member, please contact the repo owner or any of the NotePlan Discord moderators immediately. Whether you're a regular contributor or a newcomer, we care about making this community a safe place for you and we've got your back. 51 | 52 | Likewise any spamming, trolling, flaming, baiting or other attention-stealing behavior is not welcome. 53 | 54 | # Communication 55 | 56 | GitHub issues are the primary way for communicating about specific proposed changes to this project. 57 | 58 | Please follow the conduct guidelines above. Language issues are often contentious and we'd like to keep discussion brief, civil and focused on what we're actually doing, not wandering off into too much imaginary stuff. 59 | -------------------------------------------------------------------------------- /img/NPEdit.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brokosz/NotePlan_Themes/a2ff8f45080044dea604ae01a3790aa52eaec3b1/img/NPEdit.png -------------------------------------------------------------------------------- /img/applespark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brokosz/NotePlan_Themes/a2ff8f45080044dea604ae01a3790aa52eaec3b1/img/applespark.png -------------------------------------------------------------------------------- /img/atom.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brokosz/NotePlan_Themes/a2ff8f45080044dea604ae01a3790aa52eaec3b1/img/atom.png -------------------------------------------------------------------------------- /img/blueheart.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brokosz/NotePlan_Themes/a2ff8f45080044dea604ae01a3790aa52eaec3b1/img/blueheart.png -------------------------------------------------------------------------------- /img/chalkandcoal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brokosz/NotePlan_Themes/a2ff8f45080044dea604ae01a3790aa52eaec3b1/img/chalkandcoal.png -------------------------------------------------------------------------------- /img/colorfulgreydarkheart.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brokosz/NotePlan_Themes/a2ff8f45080044dea604ae01a3790aa52eaec3b1/img/colorfulgreydarkheart.png -------------------------------------------------------------------------------- /img/colorfulgreyheart.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brokosz/NotePlan_Themes/a2ff8f45080044dea604ae01a3790aa52eaec3b1/img/colorfulgreyheart.png -------------------------------------------------------------------------------- /img/danny_wyatt.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brokosz/NotePlan_Themes/a2ff8f45080044dea604ae01a3790aa52eaec3b1/img/danny_wyatt.png -------------------------------------------------------------------------------- /img/darkblue.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brokosz/NotePlan_Themes/a2ff8f45080044dea604ae01a3790aa52eaec3b1/img/darkblue.png -------------------------------------------------------------------------------- /img/darknp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brokosz/NotePlan_Themes/a2ff8f45080044dea604ae01a3790aa52eaec3b1/img/darknp.png -------------------------------------------------------------------------------- /img/darkpurple.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brokosz/NotePlan_Themes/a2ff8f45080044dea604ae01a3790aa52eaec3b1/img/darkpurple.png -------------------------------------------------------------------------------- /img/dayone.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brokosz/NotePlan_Themes/a2ff8f45080044dea604ae01a3790aa52eaec3b1/img/dayone.png -------------------------------------------------------------------------------- /img/dayonedark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brokosz/NotePlan_Themes/a2ff8f45080044dea604ae01a3790aa52eaec3b1/img/dayonedark.png -------------------------------------------------------------------------------- /img/fangbleach.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brokosz/NotePlan_Themes/a2ff8f45080044dea604ae01a3790aa52eaec3b1/img/fangbleach.png -------------------------------------------------------------------------------- /img/fangpaste.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brokosz/NotePlan_Themes/a2ff8f45080044dea604ae01a3790aa52eaec3b1/img/fangpaste.png -------------------------------------------------------------------------------- /img/freestraction.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brokosz/NotePlan_Themes/a2ff8f45080044dea604ae01a3790aa52eaec3b1/img/freestraction.png -------------------------------------------------------------------------------- /img/freestractiondark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brokosz/NotePlan_Themes/a2ff8f45080044dea604ae01a3790aa52eaec3b1/img/freestractiondark.png -------------------------------------------------------------------------------- /img/gryffindorios.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brokosz/NotePlan_Themes/a2ff8f45080044dea604ae01a3790aa52eaec3b1/img/gryffindorios.png -------------------------------------------------------------------------------- /img/gryffindormacos.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brokosz/NotePlan_Themes/a2ff8f45080044dea604ae01a3790aa52eaec3b1/img/gryffindormacos.png -------------------------------------------------------------------------------- /img/lightnp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brokosz/NotePlan_Themes/a2ff8f45080044dea604ae01a3790aa52eaec3b1/img/lightnp.png -------------------------------------------------------------------------------- /img/nandor.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brokosz/NotePlan_Themes/a2ff8f45080044dea604ae01a3790aa52eaec3b1/img/nandor.png -------------------------------------------------------------------------------- /img/nord.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brokosz/NotePlan_Themes/a2ff8f45080044dea604ae01a3790aa52eaec3b1/img/nord.png -------------------------------------------------------------------------------- /img/nordpolarday.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brokosz/NotePlan_Themes/a2ff8f45080044dea604ae01a3790aa52eaec3b1/img/nordpolarday.png -------------------------------------------------------------------------------- /img/nordpolarnight.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brokosz/NotePlan_Themes/a2ff8f45080044dea604ae01a3790aa52eaec3b1/img/nordpolarnight.png -------------------------------------------------------------------------------- /img/noteworthy-nord-dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brokosz/NotePlan_Themes/a2ff8f45080044dea604ae01a3790aa52eaec3b1/img/noteworthy-nord-dark.png -------------------------------------------------------------------------------- /img/noteworthy-nord.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brokosz/NotePlan_Themes/a2ff8f45080044dea604ae01a3790aa52eaec3b1/img/noteworthy-nord.png -------------------------------------------------------------------------------- /img/noteworthy.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brokosz/NotePlan_Themes/a2ff8f45080044dea604ae01a3790aa52eaec3b1/img/noteworthy.png -------------------------------------------------------------------------------- /img/outrun.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brokosz/NotePlan_Themes/a2ff8f45080044dea604ae01a3790aa52eaec3b1/img/outrun.png -------------------------------------------------------------------------------- /img/panda.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brokosz/NotePlan_Themes/a2ff8f45080044dea604ae01a3790aa52eaec3b1/img/panda.png -------------------------------------------------------------------------------- /img/pandadark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brokosz/NotePlan_Themes/a2ff8f45080044dea604ae01a3790aa52eaec3b1/img/pandadark.png -------------------------------------------------------------------------------- /img/purpleheart.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brokosz/NotePlan_Themes/a2ff8f45080044dea604ae01a3790aa52eaec3b1/img/purpleheart.png -------------------------------------------------------------------------------- /img/rbone.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brokosz/NotePlan_Themes/a2ff8f45080044dea604ae01a3790aa52eaec3b1/img/rbone.png -------------------------------------------------------------------------------- /img/rose-pine-dawn.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brokosz/NotePlan_Themes/a2ff8f45080044dea604ae01a3790aa52eaec3b1/img/rose-pine-dawn.png -------------------------------------------------------------------------------- /img/rose-pine.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brokosz/NotePlan_Themes/a2ff8f45080044dea604ae01a3790aa52eaec3b1/img/rose-pine.png -------------------------------------------------------------------------------- /img/scripture.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brokosz/NotePlan_Themes/a2ff8f45080044dea604ae01a3790aa52eaec3b1/img/scripture.png -------------------------------------------------------------------------------- /img/scripturedark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brokosz/NotePlan_Themes/a2ff8f45080044dea604ae01a3790aa52eaec3b1/img/scripturedark.png -------------------------------------------------------------------------------- /img/softblue.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brokosz/NotePlan_Themes/a2ff8f45080044dea604ae01a3790aa52eaec3b1/img/softblue.png -------------------------------------------------------------------------------- /img/softcontrastdark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brokosz/NotePlan_Themes/a2ff8f45080044dea604ae01a3790aa52eaec3b1/img/softcontrastdark.png -------------------------------------------------------------------------------- /img/softcontrastlight.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brokosz/NotePlan_Themes/a2ff8f45080044dea604ae01a3790aa52eaec3b1/img/softcontrastlight.png -------------------------------------------------------------------------------- /img/squidink.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brokosz/NotePlan_Themes/a2ff8f45080044dea604ae01a3790aa52eaec3b1/img/squidink.png -------------------------------------------------------------------------------- /img/squidinklight.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brokosz/NotePlan_Themes/a2ff8f45080044dea604ae01a3790aa52eaec3b1/img/squidinklight.png -------------------------------------------------------------------------------- /img/subdued.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brokosz/NotePlan_Themes/a2ff8f45080044dea604ae01a3790aa52eaec3b1/img/subdued.png -------------------------------------------------------------------------------- /img/thethymes.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brokosz/NotePlan_Themes/a2ff8f45080044dea604ae01a3790aa52eaec3b1/img/thethymes.png -------------------------------------------------------------------------------- /img/things.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brokosz/NotePlan_Themes/a2ff8f45080044dea604ae01a3790aa52eaec3b1/img/things.png -------------------------------------------------------------------------------- /img/thingsdark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brokosz/NotePlan_Themes/a2ff8f45080044dea604ae01a3790aa52eaec3b1/img/thingsdark.png -------------------------------------------------------------------------------- /img/tomorrownight.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brokosz/NotePlan_Themes/a2ff8f45080044dea604ae01a3790aa52eaec3b1/img/tomorrownight.png -------------------------------------------------------------------------------- /img/toothpastepro.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brokosz/NotePlan_Themes/a2ff8f45080044dea604ae01a3790aa52eaec3b1/img/toothpastepro.png -------------------------------------------------------------------------------- /img/wikiwords.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brokosz/NotePlan_Themes/a2ff8f45080044dea604ae01a3790aa52eaec3b1/img/wikiwords.png -------------------------------------------------------------------------------- /readme.md: -------------------------------------------------------------------------------- 1 | # NotePlan 3 Themes 2 | 3 | Here's a small collection of themes (some cloned from other apps we love) for [NotePlan 3](https://noteplan.co). Please note, installing custom themes requires NotePlan 3 v.3.0.19 or later. 4 | 5 | Released versions of themes are in the `bin` folder. Themes that are in work or haven't been tested are in the `src` folder. You can test your theme with the `theme test note.md` file in the root of this repo. Copy the contents of this file to a new note in NotePlan to see the available styling options. 6 | 7 | **Please note:** some theme options require custom regex or fonts to implement fully. 8 | 9 | ## Installing themes 10 | 11 | To install a new theme, simply download the .json file, open NotePlan 3 > Preferences > Themes, and choose `Import Theme...`. Custom themes are listed below the default built-in themes. 12 | 13 | ### Customizing themes 14 | 15 | You can add additional highlighting, functionality, and customize other theme components with regex. More information about supported NotePlan 3 styles and detailed documentation can be found [here](http://noteplan.co/createcustomthemes). 16 | 17 | ### Install missing fonts 18 | 19 | - [Amazon Ember for Squid Ink](https://developer.amazon.com/en-US/alexa/branding/echo-guidelines/identity-guidelines/typography) 20 | - [iA font for Soft Contrast, Grey Heart, and rB One](https://github.com/iaolo/iA-Fonts) 21 | - [Input font for Soft Contrast](https://input.djr.com/download/) 22 | - [Lato for Day One](https://www.1001fonts.com/lato-font.html) 23 | - [Vulf Mono for Chalk and Coal and Gryffindor](https://ohnotype.co/fonts/vulf) 24 | - [JetBrains Mono for NPEdit](https://www.jetbrains.com/lp/mono/) 25 | 26 | ## Contributing 27 | 28 | Please read [contributing.md](contributing.md) for instructions on how to submit themes or changes to existing themes. 29 | 30 | ## Available Themes 31 | 32 | ### Apple Spark 33 | 34 | ![](img/applespark.png) 35 | 36 | ### Atom 37 | 38 | ![](img/atom.png) 39 | 40 | ### Chalk and Coal 41 | 42 | ![](img/chalkandcoal.png) 43 | 44 | ### Colorful Grey Heart 45 | 46 | ![](img/colorfulgreyheart.png) 47 | ![](img/colorfulgreydarkheart.png) 48 | 49 | ### Danny Wyatt 50 | 51 | ![](img/danny_wyatt.png) 52 | 53 | ### Day One 54 | 55 | ![](img/dayone.png) 56 | ![](img/dayonedark.png) 57 | 58 | ### Dark Purple 59 | 60 | ![](img/darkpurple.png) 61 | 62 | ### Fang 63 | 64 | ![](img/fangbleach.png) 65 | ![](img/fangpaste.png) 66 | 67 | ### Freestraction Simplified 68 | 69 | ![](img/freestraction.png) 70 | ![](img/freestractiondark.png) 71 | 72 | ### Gryffindor 73 | 74 | ![](img/gryffindormacos.png) 75 | ![](img/gryffindorios.png) 76 | 77 | ### Heart 78 | 79 | ![](img/blueheart.png) 80 | ![](img/purpleheart.png) 81 | 82 | ### Light/Dark NP 83 | 84 | ![](img/lightnp.png) 85 | ![](img/darknp.png) 86 | 87 | ### Nandor 88 | 89 | ![](img/nandor.png) 90 | 91 | ### Nord 92 | 93 | ![](img/nord.png) 94 | 95 | 96 | ### Nord Polar 97 | 98 | ![](img/nordpolarday.png) 99 | ![](img/nordpolarnight.png) 100 | 101 | ### Noteworthy (Mobile) 102 | 103 | ![](img/noteworthy.png) 104 | 105 | ### Noteworthy Nord (Mobile) 106 | 107 | ![](img/noteworthy-nord.png) 108 | ![](img/noteworthy-nord-dark.png) 109 | 110 | ### NPEdit 111 | 112 | ![](img/NPEdit.png) 113 | 114 | ### Outrun 115 | 116 | ![](img/outrun.png) 117 | 118 | ### Panda 119 | 120 | ![](img/panda.png) 121 | ![](img/pandadark.png) 122 | 123 | ### rB One 124 | 125 | ![](img/rbone.png) 126 | 127 | ### Rose Pine 128 | ![](img/rose-pine.png) 129 | ![](img/rose-pine-dawn.png) 130 | 131 | ### Scripture 132 | 133 | ![](img/scripture.png) 134 | ![](img/scripturedark.png) 135 | [How to configure Scripture](https://github.com/robgrace/NPTheme-Scripture#basic-use) 136 | 137 | ### Soft Blue 138 | 139 | ![](img/softblue.png) 140 | ![](img/darkblue.png) 141 | 142 | ### Soft Contrast 143 | 144 | ![](img/softcontrastlight.png) 145 | ![](img/softcontrastdark.png) 146 | 147 | ### Squid Ink 148 | 149 | ![](img/squidinklight.png) 150 | ![](img/squidink.png) 151 | 152 | ### Subdued 153 | 154 | ![](img/subdued.png) 155 | 156 | ### The Thymes 157 | 158 | ![](img/thethymes.png) 159 | 160 | ### Things 161 | 162 | ![](img/things.png) 163 | ![](img/thingsdark.png) 164 | 165 | ### Tomorrow Night 166 | 167 | ![](img/tomorrownight.png) 168 | 169 | ### Toothpaste Pro 170 | 171 | ![](img/toothpastepro.png) 172 | 173 | ### WikiWords 174 | 175 | ![](img/wikiwords.png) 176 | -------------------------------------------------------------------------------- /src/Tomorrow Night.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "Tomorrow Night", 3 | "style": "Dark", 4 | "author": { 5 | "name": "Brad Rokosz", 6 | "email": "hello@noteplan.co" 7 | }, 8 | 9 | "editor": { 10 | "backgroundColor": "#1d1f21", 11 | "altBackgroundColor": "#1d1f21", 12 | "tintColor": "#8abeb7", 13 | "tintColor2": "#b294bb", 14 | "textColor": "#c5c8c6", 15 | "toolbarBackgroundColor": "#1d1f21", 16 | "toolbarIconColor": "#c5c8c6", 17 | "menuItemColor": "#c5c8c6", 18 | "shouldOverwriteFont": true 19 | }, 20 | 21 | "styles": { 22 | "body": { 23 | "font": "AvenirNext-Regular", 24 | "size": 16, 25 | "color": "#c5c8c6" 26 | }, 27 | 28 | "title1": { 29 | "color": "#b294bb", 30 | "size": 28, 31 | "font": "AvenirNext-DemiBold" 32 | }, 33 | 34 | "title2": { 35 | "color": "#81a2be", 36 | "size": 24, 37 | "font": "AvenirNext-DemiBold" 38 | }, 39 | 40 | "title3": { 41 | "color": "#f0c674", 42 | "size": 20, 43 | "font": "AvenirNext-DemiBold" 44 | }, 45 | 46 | "title-mark1": { 47 | "color": "#f0c674", 48 | "size": 28, 49 | "font": "AvenirNext-DemiBold" 50 | }, 51 | 52 | "title-mark2": { 53 | "color": "#8abeb7", 54 | "size": 24, 55 | "font": "AvenirNext-DemiBold" 56 | }, 57 | 58 | "title-mark3": { 59 | "color": "#b294bb", 60 | "size": 20, 61 | "font": "AvenirNext-DemiBold" 62 | }, 63 | 64 | "bold": { 65 | "color": "#de935f", 66 | "font": "AvenirNext-Bold" 67 | }, 68 | 69 | "bold-left-mark": { 70 | "color": "#66de935f" 71 | }, 72 | 73 | "bold-right-mark": { 74 | "color": "#66de935f" 75 | }, 76 | 77 | "italic": { 78 | "color": "#b5bd68", 79 | "font": "AvenirNext-Italic" 80 | }, 81 | 82 | "italic-left-mark": { 83 | "color": "#66b5bd68" 84 | }, 85 | 86 | "italic-right-mark": { 87 | "color": "#66b5bd68" 88 | }, 89 | 90 | "boldItalic": { 91 | "font": "AvenirNext-BoldItalic" 92 | }, 93 | 94 | "boldItalic-left-mark": { 95 | "color": "#66CC6666" 96 | }, 97 | 98 | "boldItalic-right-mark": { 99 | "color": "#66CC6666" 100 | }, 101 | 102 | "code": { 103 | "font": "Menlo-Regular", 104 | "color": "#969896", 105 | "size": 15 106 | }, 107 | 108 | "code-left-backtick": { 109 | "color": "#66969896" 110 | }, 111 | 112 | "code-right-backtick": { 113 | "color": "#66969896" 114 | }, 115 | 116 | "checked": { 117 | "headIndent": 33 118 | }, 119 | 120 | "todo": { 121 | "font": "noteplanstate", 122 | "color": "#cc6666", 123 | "headIndent": 33, 124 | "size": 16 125 | }, 126 | 127 | "checked-todo-characters": { 128 | "font": "noteplanstate", 129 | "headIndent": 33, 130 | "size": 16 131 | }, 132 | 133 | "checked-completed-mark": { 134 | "regex": "(^\\h*[\\*\\-]{1} |^\\h*[0-9]+[\\.\\)] )(\\[x\\] )", 135 | "matchPosition": 0, 136 | "color": "#b5bd68", 137 | "headIndent": 33 138 | }, 139 | 140 | "checked-completed-content": { 141 | "regex": "(^\\h*[\\*\\-]{1} |^\\h*[0-9]+[\\.\\)] )(\\[x\\] )(.*)", 142 | "matchPosition": 3, 143 | "color": "#AAc5c8c6", 144 | "headIndent": 33 145 | }, 146 | 147 | "checked-scheduled": { 148 | "regex": "(^\\h*[\\*\\-]{1} |^\\h*[0-9]+[\\.\\)] )(\\[\\>\\] )", 149 | "matchPosition": 0, 150 | "color": "#AAf0c674", 151 | "headIndent": 33 152 | }, 153 | 154 | "checked-canceled": { 155 | "regex": "(^\\h*[\\*\\-]{1} |^\\h*[0-9]+[\\.\\)] )(\\[\\-\\] )(.*)", 156 | "matchPosition": 0, 157 | "color": "#cc6666", 158 | "headIndent": 33 159 | }, 160 | 161 | "special-char": { 162 | "font": "Menlo-Regular" 163 | }, 164 | 165 | "tabbed": { 166 | "headIndent": 43 167 | }, 168 | 169 | "quote-mark": { 170 | "color": "#b294bb", 171 | "font": "noteplanstate", 172 | "headIndent": 33, 173 | "size": 16 174 | }, 175 | 176 | "quote-content": { 177 | "color": "#c5c8c6", 178 | "type": "italic", 179 | "headIndent": 33 180 | }, 181 | 182 | "highlighted": { 183 | "regex": "(::)([^:]{1,})(::)", 184 | "matchPosition": 2, 185 | "isRevealOnCursorRange": true, 186 | "color": "1d1f21", 187 | "backgroundColor": "#de935f" 188 | }, 189 | 190 | "highlighted-left-colon": { 191 | "regex": "(::)([^:]{1,})(::)", 192 | "matchPosition": 1, 193 | "isMarkdownCharacter": true, 194 | "isHiddenWithoutCursor": true, 195 | "isRevealOnCursorRange": true, 196 | "color": "#77de935f", 197 | "backgroundColor": "#1d1f21" 198 | }, 199 | 200 | "highlighted-right-colon": { 201 | "regex": "(::)([^:]{1,})(::)", 202 | "matchPosition": 3, 203 | "isMarkdownCharacter": true, 204 | "isHiddenWithoutCursor": true, 205 | "isRevealOnCursorRange": true, 206 | "color": "#77de935f", 207 | "backgroundColor": "#1d1f21" 208 | }, 209 | 210 | "flagged-1": { 211 | "regex": "(^|\\v)(\\h*(\\*|-)\\h*(\\[ \\]\\h+|\\h+)(\\!{1}\\h+.*))($|\\v)", 212 | "matchPosition": 5, 213 | "backgroundColor": "#22cc6666", 214 | "headIndent": 33 215 | }, 216 | 217 | "flagged-2": { 218 | "regex": "(^|\\v)(\\h*(\\*|-)\\h*(\\[ \\]\\h+|\\h+)(\\!{2}\\h+.*))($|\\v)", 219 | "matchPosition": 5, 220 | "backgroundColor": "#55cc6666", 221 | "headIndent": 33 222 | }, 223 | 224 | "flagged-3": { 225 | "regex": "(^|\\v)(\\h*(\\*|-)\\h*(\\[ \\]\\h+|\\h+)(\\!{3}\\h+.*))($|\\v)", 226 | "matchPosition": 5, 227 | "backgroundColor": "#AAcc6666", 228 | "headIndent": 33 229 | }, 230 | 231 | "strikethrough": { 232 | "regex": "(~~)([^:]{1,})(~~)", 233 | "matchPosition": 2, 234 | "isRevealOnCursorRange": true, 235 | "color": "#AAc5c8c6", 236 | "strikethroughStyle": 1, 237 | "strikethroughColor": "#AAc5c8c6" 238 | }, 239 | 240 | "strikethrough-left-tildes": { 241 | "regex": "(~~)([^:]{1,})(~~)", 242 | "matchPosition": 1, 243 | "isMarkdownCharacter": true, 244 | "isHiddenWithoutCursor": true, 245 | "isRevealOnCursorRange": true, 246 | "color": "#66c5c8c6" 247 | }, 248 | 249 | "strikethrough-right-tildes": { 250 | "regex": "(~~)([^:]{1,})(~~)", 251 | "matchPosition": 3, 252 | "isMarkdownCharacter": true, 253 | "isHiddenWithoutCursor": true, 254 | "isRevealOnCursorRange": true, 255 | "color": "#66c5c8c6" 256 | }, 257 | 258 | "link": {}, 259 | 260 | "schedule-to-date-link": {}, 261 | 262 | "done-date": {}, 263 | 264 | "schedule-from-date-link": {}, 265 | 266 | "note-title-link": {}, 267 | 268 | "hashtag": {}, 269 | 270 | "attag": {}, 271 | 272 | "phonenumber": {} 273 | } 274 | } 275 | -------------------------------------------------------------------------------- /src/toothbleach.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "Toothbleach", 3 | "style": "Light", 4 | "author": { 5 | "name": "NotePlan", 6 | "email": "hello@noteplan.co" 7 | }, 8 | "editor": { 9 | "backgroundColor": "#FAFAFA", 10 | "altBackgroundColor": "#F9F9F9", 11 | "tintColor": "#E8A200", 12 | "tintColor2": "#769EB3", 13 | "textColor": "#222E33", 14 | "toolbarBackgroundColor": "#EBEBE4", 15 | "toolbarIconColor": "#222E33", 16 | "menuItemColor": "#222E33", 17 | "shouldOverwriteFont": true 18 | }, 19 | "styles": { 20 | "body": { 21 | "font": "AvenirNext-Regular", 22 | "size": 16, 23 | "color": "#222E33" 24 | }, 25 | "title1": { 26 | "color": "#C5487A", 27 | "size": 28, 28 | "font": "AvenirNext-DemiBold" 29 | }, 30 | "title2": { 31 | "color": "#9B82C9", 32 | "size": 24, 33 | "font": "AvenirNext-DemiBold" 34 | }, 35 | "title3": { 36 | "color": "#9B82C9", 37 | "size": 20, 38 | "font": "AvenirNext-DemiBold" 39 | }, 40 | "title-mark1": { 41 | "color": "#669B82C9", 42 | "size": 28, 43 | "font": "AvenirNext-DemiBold" 44 | }, 45 | "title-mark2": { 46 | "color": "#669B82C9", 47 | "size": 24, 48 | "font": "AvenirNext-DemiBold" 49 | }, 50 | "title-mark3": { 51 | "color": "#669B82C9", 52 | "size": 20, 53 | "font": "AvenirNext-DemiBold" 54 | }, 55 | "bold": { 56 | "color": "#CC6666", 57 | "font": "AvenirNext-Bold" 58 | }, 59 | "bold-left-mark": { 60 | "color": "#66CC6666" 61 | }, 62 | "bold-right-mark": { 63 | "color": "#66CC6666" 64 | }, 65 | "italic": { 66 | "color": "#769EB3", 67 | "font": "AvenirNext-Italic" 68 | }, 69 | "italic-left-mark": { 70 | "color": "#66769EB3" 71 | }, 72 | "italic-right-mark": { 73 | "color": "#66769EB3" 74 | }, 75 | "boldItalic": { 76 | "font": "AvenirNext-BoldItalic" 77 | }, 78 | "boldItalic-left-mark": { 79 | "color": "#66CC6666" 80 | }, 81 | "boldItalic-right-mark": { 82 | "color": "#66CC6666" 83 | }, 84 | "code": { 85 | "font": "Menlo-Regular", 86 | "color": "#734700", 87 | "size": 15 88 | }, 89 | "code-left-backtick": { 90 | "color": "#66734700" 91 | }, 92 | "code-right-backtick": { 93 | "color": "#66734700" 94 | }, 95 | "checked": { 96 | "color": "#97B853", 97 | "headIndent": 33 98 | }, 99 | "todo": { 100 | "font": "noteplanstate", 101 | "color": "#CC6666", 102 | "headIndent": 33, 103 | "size": 16 104 | }, 105 | "checked-todo-characters": { 106 | "font": "noteplanstate", 107 | "headIndent": 33, 108 | "size": 16 109 | }, 110 | "special-char": { 111 | "font": "Menlo-Regular" 112 | }, 113 | "tabbed": { 114 | "headIndent": 43 115 | }, 116 | "quote-mark": { 117 | "color": "#97B853", 118 | "font": "noteplanstate", 119 | "headIndent": 33, 120 | "size": 16 121 | }, 122 | "quote-content": { 123 | "color": "#A3A39E", 124 | "type": "italic", 125 | "headIndent": 33 126 | }, 127 | "link": {}, 128 | "schedule-to-date-link": {}, 129 | "done-date": {}, 130 | "schedule-from-date-link": {}, 131 | "note-title-link": {}, 132 | "hashtag": {}, 133 | "attag": {}, 134 | "phonenumber": {} 135 | } 136 | } -------------------------------------------------------------------------------- /src/toothpaste.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "Toothpaste", 3 | "style": "Dark", 4 | "author": { 5 | "name": "NotePlan", 6 | "email": "hello@noteplan.co" 7 | }, 8 | "editor": { 9 | "backgroundColor": "#222E33", 10 | "altBackgroundColor": "#2B3940", 11 | "tintColor": "#E9C062", 12 | "tintColor2": "#73B3C0", 13 | "textColor": "#DAE3E8", 14 | "toolbarBackgroundColor": "#2B3940", 15 | "toolbarIconColor": "#c5c5c0", 16 | "menuItemColor": "#c5c5c0", 17 | "shouldOverwriteFont": true 18 | }, 19 | "styles": { 20 | "body": { 21 | "font": "AvenirNext-Regular", 22 | "size": 16, 23 | "color": "#DAE3E8" 24 | }, 25 | "title1": { 26 | "color": "#DAE3E8", 27 | "size": 28, 28 | "font": "AvenirNext-DemiBold" 29 | }, 30 | "title2": { 31 | "color": "#E9C062", 32 | "size": 24, 33 | "font": "AvenirNext-DemiBold" 34 | }, 35 | "title3": { 36 | "color": "#E9C062", 37 | "size": 20, 38 | "font": "AvenirNext-DemiBold" 39 | }, 40 | "title-mark1": { 41 | "color": "#66DAE3E8", 42 | "size": 28, 43 | "font": "AvenirNext-DemiBold" 44 | }, 45 | "title-mark2": { 46 | "color": "#66E9C062", 47 | "size": 24, 48 | "font": "AvenirNext-DemiBold" 49 | }, 50 | "title-mark3": { 51 | "color": "#66E9C062", 52 | "size": 20, 53 | "font": "AvenirNext-DemiBold" 54 | }, 55 | "bold": { 56 | "color": "#CC6666", 57 | "font": "AvenirNext-Bold" 58 | }, 59 | "bold-left-mark": { 60 | "color": "#66CC6666" 61 | }, 62 | "bold-right-mark": { 63 | "color": "#66CC6666" 64 | }, 65 | "italic": { 66 | "color": "#96CBFE", 67 | "font": "AvenirNext-Italic" 68 | }, 69 | "italic-left-mark": { 70 | "color": "#6696CBFE" 71 | }, 72 | "italic-right-mark": { 73 | "color": "#6696CBFE" 74 | }, 75 | "boldItalic": { 76 | "font": "AvenirNext-BoldItalic" 77 | }, 78 | "boldItalic-left-mark": { 79 | "color": "#66CC6666" 80 | }, 81 | "boldItalic-right-mark": { 82 | "color": "#66CC6666" 83 | }, 84 | "code": { 85 | "font": "Menlo-Regular", 86 | "color": "#B9B279", 87 | "size": 15 88 | }, 89 | "code-left-backtick": { 90 | "color": "#66B9B279" 91 | }, 92 | "code-right-backtick": { 93 | "color": "#66B9B279" 94 | }, 95 | "checked": { 96 | "color": "#9DC777", 97 | "headIndent": 33 98 | }, 99 | "todo": { 100 | "font": "noteplanstate", 101 | "color": "#CC6666", 102 | "headIndent": 33, 103 | "size": 16 104 | }, 105 | "checked-todo-characters": { 106 | "font": "noteplanstate", 107 | "headIndent": 33, 108 | "size": 16 109 | }, 110 | "special-char": { 111 | "font": "Menlo-Regular" 112 | }, 113 | "tabbed": { 114 | "headIndent": 43 115 | }, 116 | "quote-mark": { 117 | "color": "#9DC777", 118 | "font": "noteplanstate", 119 | "headIndent": 33, 120 | "size": 16 121 | }, 122 | "quote-content": { 123 | "color": "#c5c5c0", 124 | "type": "italic", 125 | "headIndent": 33 126 | }, 127 | "link": {}, 128 | "schedule-to-date-link": {}, 129 | "done-date": {}, 130 | "schedule-from-date-link": {}, 131 | "note-title-link": {}, 132 | "hashtag": {}, 133 | "attag": {}, 134 | "phonenumber": {} 135 | } 136 | } -------------------------------------------------------------------------------- /theme test note.md: -------------------------------------------------------------------------------- 1 | # Theme test note 2 | 3 | All the trimmings 4 | **Bold** 5 | *Italic* 6 | 7 | ## heading two 8 | > quote 9 | 10 | # Header One 11 | ## Header Two 12 | ### Header Three 13 | #### Header Four 14 | 15 | http://noteplan.co 16 | [Apple](www.apple.com) 17 | 18 | #test_tag 19 | @test_mention 20 | 21 | - bullet 22 | 1. Numbered 23 | - [ ] task test 24 | - [-] Scheduled task 25 | - [x] Complete task @done(2020-07-18 04:53 PM) 26 | 27 | ::highlight:: 28 | > this is a quote 29 | 30 | ~~strikethrough~~ 31 | [[welcome]] 32 | 33 | `this is inline code` 34 | `1234567890` 35 | 36 | ``` 37 | Test code block 38 | abcdefghijklmnopqrstuvwxyz 39 | ``` 40 | --------------------------------------------------------------------------------