File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 11{
22 "name" : " micropad" ,
3- "version" : " 4.6 .0" ,
3+ "version" : " 4.7 .0" ,
44 "private" : true ,
55 "scripts" : {
66 "preinstall" : " python3 ../libs/build-libs.py && ./get_precache_files.py > src/extraPrecacheFiles.ts" ,
Original file line number Diff line number Diff line change @@ -135,6 +135,21 @@ export const ThemeValues: { [K in ThemeName]: ITheme } = {
135135 element : elementInstructionsLight
136136 }
137137 } ,
138+ Grandma : {
139+ background : '#fbcbd4' ,
140+ accent : '#f8e3fd' ,
141+ chrome : '#f79cad' ,
142+ text : '#000000' ,
143+ links : '#444444' ,
144+ explorerContent : '#333333' ,
145+ accentContent : '#333333' ,
146+ backgroundImage : filledBackground ,
147+ instructionImages : {
148+ notepad : instructionImageLight ,
149+ note : noteInstructionsLight ,
150+ element : elementInstructionsLight
151+ }
152+ } ,
138153 Purple : {
139154 background : '#ffffff' ,
140155 accent : '#ffcc00' ,
Load Diff Large diffs are not rendered by default.
Original file line number Diff line number Diff line change @@ -16,6 +16,7 @@ import './theme-styles/Wellington.css';
1616import './theme-styles/Peach.css' ;
1717import './theme-styles/Pastel.css' ;
1818import './theme-styles/Purple.css' ;
19+ import './theme-styles/Grandma.css' ;
1920/* JS Imports */
2021import React from 'react' ;
2122import 'materialize-css/dist/js/materialize.js' ;
Original file line number Diff line number Diff line change 1+ .theme-Grandma a {
2+ color : # 333 ;
3+ }
4+
5+ .theme-Grandma .notepad-explorer a {
6+ color : # 231e23 ;
7+ }
8+
9+ # breadcrumb-holder > nav .Grandma {
10+ background-color : # fdc3a4 ;
11+ }
Original file line number Diff line number Diff line change 1- export type ThemeName = 'Classic' | 'Solarized' | 'Gruvbox' | 'Midnight' | 'Void' | 'Peach' | 'Pastel' | 'Wellington' | 'Purple' | 'IanPad' ;
1+ export type ThemeName =
2+ | 'Classic'
3+ | 'Solarized'
4+ | 'Gruvbox'
5+ | 'Midnight'
6+ | 'Void'
7+ | 'Peach'
8+ | 'Pastel'
9+ | 'Wellington'
10+ | 'Grandma'
11+ | 'Purple'
12+ | 'IanPad' ;
213
314export interface ITheme {
415 background : string ;
You can’t perform that action at this time.
0 commit comments