├── .gitignore ├── LICENSE ├── README.md ├── ReleaseNote.md ├── ceylon-dark.css ├── ceylon-darker.css ├── ceylon.css ├── ceylon ├── .DS_Store ├── Inter-italic.ttf ├── Inter-roman.ttf ├── OFL.txt ├── display │ ├── .DS_Store │ ├── IBM-Plex-Sans │ │ ├── IBMPlexSans-Bold.ttf │ │ ├── IBMPlexSans-BoldItalic.ttf │ │ ├── IBMPlexSans-ExtraLight.ttf │ │ ├── IBMPlexSans-ExtraLightItalic.ttf │ │ ├── IBMPlexSans-Italic.ttf │ │ ├── IBMPlexSans-Light.ttf │ │ ├── IBMPlexSans-LightItalic.ttf │ │ ├── IBMPlexSans-Medium.ttf │ │ ├── IBMPlexSans-MediumItalic.ttf │ │ ├── IBMPlexSans-Regular.ttf │ │ ├── IBMPlexSans-SemiBold.ttf │ │ ├── IBMPlexSans-SemiBoldItalic.ttf │ │ ├── IBMPlexSans-Thin.ttf │ │ └── IBMPlexSans-ThinItalic.ttf │ └── satoshi │ │ ├── Satoshi-Variable.woff2 │ │ └── Satoshi-VariableItalic.woff2 ├── fonts.css ├── icons │ ├── cd-dualtone-file-selected.svg │ ├── cd-dualtone-file.svg │ ├── cd-dualtone-folder-closed.svg │ ├── cd-dualtone-folder-open.svg │ ├── dark-file-selected.svg │ ├── dark-file.svg │ ├── dark-folder-closed.svg │ ├── dark-folder-open.svg │ ├── dualtone-file-selected.svg │ ├── dualtone-file.svg │ ├── dualtone-folder-closed.svg │ ├── dualtone-folder-open.svg │ ├── outline-file-selected.svg │ ├── outline-file.svg │ ├── outline-folder-closed.svg │ └── outline-folder-open.svg └── monospace │ ├── .DS_Store │ ├── FiraMono │ ├── FiraMono-Bold.ttf │ ├── FiraMono-Medium.ttf │ └── FiraMono-Regular.ttf │ └── IBMPlexMono │ ├── .DS_Store │ ├── IBMPlexMono-Bold.ttf │ ├── IBMPlexMono-BoldItalic.ttf │ ├── IBMPlexMono-ExtraLight.ttf │ ├── IBMPlexMono-ExtraLightItalic.ttf │ ├── IBMPlexMono-Italic.ttf │ ├── IBMPlexMono-Light.ttf │ ├── IBMPlexMono-LightItalic.ttf │ ├── IBMPlexMono-Medium.ttf │ ├── IBMPlexMono-MediumItalic.ttf │ ├── IBMPlexMono-Regular.ttf │ ├── IBMPlexMono-SemiBold.ttf │ ├── IBMPlexMono-SemiBoldItalic.ttf │ ├── IBMPlexMono-Thin.ttf │ ├── IBMPlexMono-ThinItalic.ttf │ └── OFL.txt └── img ├── SCR-20240713-oluo.png ├── SCR-20240713-olvw.png ├── SCR-20240713-olxc.png └── theme-banner.png /.gitignore: -------------------------------------------------------------------------------- 1 | .DS_Store 2 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tdarshana/typora-ceylon-theme/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tdarshana/typora-ceylon-theme/HEAD/README.md -------------------------------------------------------------------------------- /ReleaseNote.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tdarshana/typora-ceylon-theme/HEAD/ReleaseNote.md -------------------------------------------------------------------------------- /ceylon-dark.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tdarshana/typora-ceylon-theme/HEAD/ceylon-dark.css -------------------------------------------------------------------------------- /ceylon-darker.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tdarshana/typora-ceylon-theme/HEAD/ceylon-darker.css -------------------------------------------------------------------------------- /ceylon.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tdarshana/typora-ceylon-theme/HEAD/ceylon.css -------------------------------------------------------------------------------- /ceylon/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tdarshana/typora-ceylon-theme/HEAD/ceylon/.DS_Store -------------------------------------------------------------------------------- /ceylon/Inter-italic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tdarshana/typora-ceylon-theme/HEAD/ceylon/Inter-italic.ttf -------------------------------------------------------------------------------- /ceylon/Inter-roman.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tdarshana/typora-ceylon-theme/HEAD/ceylon/Inter-roman.ttf -------------------------------------------------------------------------------- /ceylon/OFL.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tdarshana/typora-ceylon-theme/HEAD/ceylon/OFL.txt -------------------------------------------------------------------------------- /ceylon/display/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tdarshana/typora-ceylon-theme/HEAD/ceylon/display/.DS_Store -------------------------------------------------------------------------------- /ceylon/display/IBM-Plex-Sans/IBMPlexSans-Bold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tdarshana/typora-ceylon-theme/HEAD/ceylon/display/IBM-Plex-Sans/IBMPlexSans-Bold.ttf -------------------------------------------------------------------------------- /ceylon/display/IBM-Plex-Sans/IBMPlexSans-BoldItalic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tdarshana/typora-ceylon-theme/HEAD/ceylon/display/IBM-Plex-Sans/IBMPlexSans-BoldItalic.ttf -------------------------------------------------------------------------------- /ceylon/display/IBM-Plex-Sans/IBMPlexSans-ExtraLight.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tdarshana/typora-ceylon-theme/HEAD/ceylon/display/IBM-Plex-Sans/IBMPlexSans-ExtraLight.ttf -------------------------------------------------------------------------------- /ceylon/display/IBM-Plex-Sans/IBMPlexSans-ExtraLightItalic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tdarshana/typora-ceylon-theme/HEAD/ceylon/display/IBM-Plex-Sans/IBMPlexSans-ExtraLightItalic.ttf -------------------------------------------------------------------------------- /ceylon/display/IBM-Plex-Sans/IBMPlexSans-Italic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tdarshana/typora-ceylon-theme/HEAD/ceylon/display/IBM-Plex-Sans/IBMPlexSans-Italic.ttf -------------------------------------------------------------------------------- /ceylon/display/IBM-Plex-Sans/IBMPlexSans-Light.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tdarshana/typora-ceylon-theme/HEAD/ceylon/display/IBM-Plex-Sans/IBMPlexSans-Light.ttf -------------------------------------------------------------------------------- /ceylon/display/IBM-Plex-Sans/IBMPlexSans-LightItalic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tdarshana/typora-ceylon-theme/HEAD/ceylon/display/IBM-Plex-Sans/IBMPlexSans-LightItalic.ttf -------------------------------------------------------------------------------- /ceylon/display/IBM-Plex-Sans/IBMPlexSans-Medium.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tdarshana/typora-ceylon-theme/HEAD/ceylon/display/IBM-Plex-Sans/IBMPlexSans-Medium.ttf -------------------------------------------------------------------------------- /ceylon/display/IBM-Plex-Sans/IBMPlexSans-MediumItalic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tdarshana/typora-ceylon-theme/HEAD/ceylon/display/IBM-Plex-Sans/IBMPlexSans-MediumItalic.ttf -------------------------------------------------------------------------------- /ceylon/display/IBM-Plex-Sans/IBMPlexSans-Regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tdarshana/typora-ceylon-theme/HEAD/ceylon/display/IBM-Plex-Sans/IBMPlexSans-Regular.ttf -------------------------------------------------------------------------------- /ceylon/display/IBM-Plex-Sans/IBMPlexSans-SemiBold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tdarshana/typora-ceylon-theme/HEAD/ceylon/display/IBM-Plex-Sans/IBMPlexSans-SemiBold.ttf -------------------------------------------------------------------------------- /ceylon/display/IBM-Plex-Sans/IBMPlexSans-SemiBoldItalic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tdarshana/typora-ceylon-theme/HEAD/ceylon/display/IBM-Plex-Sans/IBMPlexSans-SemiBoldItalic.ttf -------------------------------------------------------------------------------- /ceylon/display/IBM-Plex-Sans/IBMPlexSans-Thin.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tdarshana/typora-ceylon-theme/HEAD/ceylon/display/IBM-Plex-Sans/IBMPlexSans-Thin.ttf -------------------------------------------------------------------------------- /ceylon/display/IBM-Plex-Sans/IBMPlexSans-ThinItalic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tdarshana/typora-ceylon-theme/HEAD/ceylon/display/IBM-Plex-Sans/IBMPlexSans-ThinItalic.ttf -------------------------------------------------------------------------------- /ceylon/display/satoshi/Satoshi-Variable.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tdarshana/typora-ceylon-theme/HEAD/ceylon/display/satoshi/Satoshi-Variable.woff2 -------------------------------------------------------------------------------- /ceylon/display/satoshi/Satoshi-VariableItalic.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tdarshana/typora-ceylon-theme/HEAD/ceylon/display/satoshi/Satoshi-VariableItalic.woff2 -------------------------------------------------------------------------------- /ceylon/fonts.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tdarshana/typora-ceylon-theme/HEAD/ceylon/fonts.css -------------------------------------------------------------------------------- /ceylon/icons/cd-dualtone-file-selected.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tdarshana/typora-ceylon-theme/HEAD/ceylon/icons/cd-dualtone-file-selected.svg -------------------------------------------------------------------------------- /ceylon/icons/cd-dualtone-file.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tdarshana/typora-ceylon-theme/HEAD/ceylon/icons/cd-dualtone-file.svg -------------------------------------------------------------------------------- /ceylon/icons/cd-dualtone-folder-closed.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tdarshana/typora-ceylon-theme/HEAD/ceylon/icons/cd-dualtone-folder-closed.svg -------------------------------------------------------------------------------- /ceylon/icons/cd-dualtone-folder-open.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tdarshana/typora-ceylon-theme/HEAD/ceylon/icons/cd-dualtone-folder-open.svg -------------------------------------------------------------------------------- /ceylon/icons/dark-file-selected.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tdarshana/typora-ceylon-theme/HEAD/ceylon/icons/dark-file-selected.svg -------------------------------------------------------------------------------- /ceylon/icons/dark-file.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tdarshana/typora-ceylon-theme/HEAD/ceylon/icons/dark-file.svg -------------------------------------------------------------------------------- /ceylon/icons/dark-folder-closed.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tdarshana/typora-ceylon-theme/HEAD/ceylon/icons/dark-folder-closed.svg -------------------------------------------------------------------------------- /ceylon/icons/dark-folder-open.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tdarshana/typora-ceylon-theme/HEAD/ceylon/icons/dark-folder-open.svg -------------------------------------------------------------------------------- /ceylon/icons/dualtone-file-selected.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tdarshana/typora-ceylon-theme/HEAD/ceylon/icons/dualtone-file-selected.svg -------------------------------------------------------------------------------- /ceylon/icons/dualtone-file.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tdarshana/typora-ceylon-theme/HEAD/ceylon/icons/dualtone-file.svg -------------------------------------------------------------------------------- /ceylon/icons/dualtone-folder-closed.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tdarshana/typora-ceylon-theme/HEAD/ceylon/icons/dualtone-folder-closed.svg -------------------------------------------------------------------------------- /ceylon/icons/dualtone-folder-open.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tdarshana/typora-ceylon-theme/HEAD/ceylon/icons/dualtone-folder-open.svg -------------------------------------------------------------------------------- /ceylon/icons/outline-file-selected.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tdarshana/typora-ceylon-theme/HEAD/ceylon/icons/outline-file-selected.svg -------------------------------------------------------------------------------- /ceylon/icons/outline-file.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tdarshana/typora-ceylon-theme/HEAD/ceylon/icons/outline-file.svg -------------------------------------------------------------------------------- /ceylon/icons/outline-folder-closed.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tdarshana/typora-ceylon-theme/HEAD/ceylon/icons/outline-folder-closed.svg -------------------------------------------------------------------------------- /ceylon/icons/outline-folder-open.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tdarshana/typora-ceylon-theme/HEAD/ceylon/icons/outline-folder-open.svg -------------------------------------------------------------------------------- /ceylon/monospace/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tdarshana/typora-ceylon-theme/HEAD/ceylon/monospace/.DS_Store -------------------------------------------------------------------------------- /ceylon/monospace/FiraMono/FiraMono-Bold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tdarshana/typora-ceylon-theme/HEAD/ceylon/monospace/FiraMono/FiraMono-Bold.ttf -------------------------------------------------------------------------------- /ceylon/monospace/FiraMono/FiraMono-Medium.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tdarshana/typora-ceylon-theme/HEAD/ceylon/monospace/FiraMono/FiraMono-Medium.ttf -------------------------------------------------------------------------------- /ceylon/monospace/FiraMono/FiraMono-Regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tdarshana/typora-ceylon-theme/HEAD/ceylon/monospace/FiraMono/FiraMono-Regular.ttf -------------------------------------------------------------------------------- /ceylon/monospace/IBMPlexMono/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tdarshana/typora-ceylon-theme/HEAD/ceylon/monospace/IBMPlexMono/.DS_Store -------------------------------------------------------------------------------- /ceylon/monospace/IBMPlexMono/IBMPlexMono-Bold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tdarshana/typora-ceylon-theme/HEAD/ceylon/monospace/IBMPlexMono/IBMPlexMono-Bold.ttf -------------------------------------------------------------------------------- /ceylon/monospace/IBMPlexMono/IBMPlexMono-BoldItalic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tdarshana/typora-ceylon-theme/HEAD/ceylon/monospace/IBMPlexMono/IBMPlexMono-BoldItalic.ttf -------------------------------------------------------------------------------- /ceylon/monospace/IBMPlexMono/IBMPlexMono-ExtraLight.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tdarshana/typora-ceylon-theme/HEAD/ceylon/monospace/IBMPlexMono/IBMPlexMono-ExtraLight.ttf -------------------------------------------------------------------------------- /ceylon/monospace/IBMPlexMono/IBMPlexMono-ExtraLightItalic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tdarshana/typora-ceylon-theme/HEAD/ceylon/monospace/IBMPlexMono/IBMPlexMono-ExtraLightItalic.ttf -------------------------------------------------------------------------------- /ceylon/monospace/IBMPlexMono/IBMPlexMono-Italic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tdarshana/typora-ceylon-theme/HEAD/ceylon/monospace/IBMPlexMono/IBMPlexMono-Italic.ttf -------------------------------------------------------------------------------- /ceylon/monospace/IBMPlexMono/IBMPlexMono-Light.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tdarshana/typora-ceylon-theme/HEAD/ceylon/monospace/IBMPlexMono/IBMPlexMono-Light.ttf -------------------------------------------------------------------------------- /ceylon/monospace/IBMPlexMono/IBMPlexMono-LightItalic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tdarshana/typora-ceylon-theme/HEAD/ceylon/monospace/IBMPlexMono/IBMPlexMono-LightItalic.ttf -------------------------------------------------------------------------------- /ceylon/monospace/IBMPlexMono/IBMPlexMono-Medium.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tdarshana/typora-ceylon-theme/HEAD/ceylon/monospace/IBMPlexMono/IBMPlexMono-Medium.ttf -------------------------------------------------------------------------------- /ceylon/monospace/IBMPlexMono/IBMPlexMono-MediumItalic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tdarshana/typora-ceylon-theme/HEAD/ceylon/monospace/IBMPlexMono/IBMPlexMono-MediumItalic.ttf -------------------------------------------------------------------------------- /ceylon/monospace/IBMPlexMono/IBMPlexMono-Regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tdarshana/typora-ceylon-theme/HEAD/ceylon/monospace/IBMPlexMono/IBMPlexMono-Regular.ttf -------------------------------------------------------------------------------- /ceylon/monospace/IBMPlexMono/IBMPlexMono-SemiBold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tdarshana/typora-ceylon-theme/HEAD/ceylon/monospace/IBMPlexMono/IBMPlexMono-SemiBold.ttf -------------------------------------------------------------------------------- /ceylon/monospace/IBMPlexMono/IBMPlexMono-SemiBoldItalic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tdarshana/typora-ceylon-theme/HEAD/ceylon/monospace/IBMPlexMono/IBMPlexMono-SemiBoldItalic.ttf -------------------------------------------------------------------------------- /ceylon/monospace/IBMPlexMono/IBMPlexMono-Thin.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tdarshana/typora-ceylon-theme/HEAD/ceylon/monospace/IBMPlexMono/IBMPlexMono-Thin.ttf -------------------------------------------------------------------------------- /ceylon/monospace/IBMPlexMono/IBMPlexMono-ThinItalic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tdarshana/typora-ceylon-theme/HEAD/ceylon/monospace/IBMPlexMono/IBMPlexMono-ThinItalic.ttf -------------------------------------------------------------------------------- /ceylon/monospace/IBMPlexMono/OFL.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tdarshana/typora-ceylon-theme/HEAD/ceylon/monospace/IBMPlexMono/OFL.txt -------------------------------------------------------------------------------- /img/SCR-20240713-oluo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tdarshana/typora-ceylon-theme/HEAD/img/SCR-20240713-oluo.png -------------------------------------------------------------------------------- /img/SCR-20240713-olvw.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tdarshana/typora-ceylon-theme/HEAD/img/SCR-20240713-olvw.png -------------------------------------------------------------------------------- /img/SCR-20240713-olxc.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tdarshana/typora-ceylon-theme/HEAD/img/SCR-20240713-olxc.png -------------------------------------------------------------------------------- /img/theme-banner.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tdarshana/typora-ceylon-theme/HEAD/img/theme-banner.png --------------------------------------------------------------------------------