├── .gitignore ├── .vscode └── settings.json ├── README.md ├── assets └── neumorphism.less ├── cursor.js ├── fonts ├── Anonymous.woff2 ├── AnonymousB.woff2 ├── AnonymousI.woff2 ├── Bellota-Bold.woff2 ├── Bellota-Italic.woff2 ├── Bellota-Regular.woff2 ├── FZJZFS.woff ├── FZJZFS.woff2 ├── FiraCode-Bold.woff2 ├── FiraCode-Light.woff2 ├── FiraCode-Regular.woff2 ├── HYHuaGuan_55W.woff2 ├── HYHuaGuan_85W.woff2 ├── OldStandard-Bold.woff2 ├── fangzhengkaiti.woff └── fangzhengkaiti.woff2 ├── neumorphism.css └── neumorphismd.css /.gitignore: -------------------------------------------------------------------------------- 1 | 2 | .DS_Store 3 | -------------------------------------------------------------------------------- /.vscode/settings.json: -------------------------------------------------------------------------------- 1 | { 2 | "editor.fontSize": 16 3 | } -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Soanguy/Typora-Theme-Neumorphism/HEAD/README.md -------------------------------------------------------------------------------- /assets/neumorphism.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Soanguy/Typora-Theme-Neumorphism/HEAD/assets/neumorphism.less -------------------------------------------------------------------------------- /cursor.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Soanguy/Typora-Theme-Neumorphism/HEAD/cursor.js -------------------------------------------------------------------------------- /fonts/Anonymous.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Soanguy/Typora-Theme-Neumorphism/HEAD/fonts/Anonymous.woff2 -------------------------------------------------------------------------------- /fonts/AnonymousB.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Soanguy/Typora-Theme-Neumorphism/HEAD/fonts/AnonymousB.woff2 -------------------------------------------------------------------------------- /fonts/AnonymousI.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Soanguy/Typora-Theme-Neumorphism/HEAD/fonts/AnonymousI.woff2 -------------------------------------------------------------------------------- /fonts/Bellota-Bold.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Soanguy/Typora-Theme-Neumorphism/HEAD/fonts/Bellota-Bold.woff2 -------------------------------------------------------------------------------- /fonts/Bellota-Italic.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Soanguy/Typora-Theme-Neumorphism/HEAD/fonts/Bellota-Italic.woff2 -------------------------------------------------------------------------------- /fonts/Bellota-Regular.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Soanguy/Typora-Theme-Neumorphism/HEAD/fonts/Bellota-Regular.woff2 -------------------------------------------------------------------------------- /fonts/FZJZFS.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Soanguy/Typora-Theme-Neumorphism/HEAD/fonts/FZJZFS.woff -------------------------------------------------------------------------------- /fonts/FZJZFS.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Soanguy/Typora-Theme-Neumorphism/HEAD/fonts/FZJZFS.woff2 -------------------------------------------------------------------------------- /fonts/FiraCode-Bold.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Soanguy/Typora-Theme-Neumorphism/HEAD/fonts/FiraCode-Bold.woff2 -------------------------------------------------------------------------------- /fonts/FiraCode-Light.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Soanguy/Typora-Theme-Neumorphism/HEAD/fonts/FiraCode-Light.woff2 -------------------------------------------------------------------------------- /fonts/FiraCode-Regular.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Soanguy/Typora-Theme-Neumorphism/HEAD/fonts/FiraCode-Regular.woff2 -------------------------------------------------------------------------------- /fonts/HYHuaGuan_55W.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Soanguy/Typora-Theme-Neumorphism/HEAD/fonts/HYHuaGuan_55W.woff2 -------------------------------------------------------------------------------- /fonts/HYHuaGuan_85W.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Soanguy/Typora-Theme-Neumorphism/HEAD/fonts/HYHuaGuan_85W.woff2 -------------------------------------------------------------------------------- /fonts/OldStandard-Bold.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Soanguy/Typora-Theme-Neumorphism/HEAD/fonts/OldStandard-Bold.woff2 -------------------------------------------------------------------------------- /fonts/fangzhengkaiti.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Soanguy/Typora-Theme-Neumorphism/HEAD/fonts/fangzhengkaiti.woff -------------------------------------------------------------------------------- /fonts/fangzhengkaiti.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Soanguy/Typora-Theme-Neumorphism/HEAD/fonts/fangzhengkaiti.woff2 -------------------------------------------------------------------------------- /neumorphism.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Soanguy/Typora-Theme-Neumorphism/HEAD/neumorphism.css -------------------------------------------------------------------------------- /neumorphismd.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Soanguy/Typora-Theme-Neumorphism/HEAD/neumorphismd.css --------------------------------------------------------------------------------