├── .cocorc ├── .design └── logos.ai ├── .eslintrc.json ├── .github └── workflows │ └── release.yml ├── .gitignore ├── .prettierignore ├── .prettierrc ├── .vscode └── settings.json ├── CHANGELOG.md ├── LICENSE ├── README.md ├── figs ├── issue.png ├── pr.png ├── repo.png └── settings.png ├── package.json ├── src └── themes │ ├── img │ ├── favicon.svg │ ├── loading.svg │ └── logo.svg │ └── scss │ ├── _utils │ └── _color-utils.scss │ ├── _vars.scss │ ├── auto.scss │ ├── dark.scss │ ├── light.scss │ └── theme │ ├── components │ ├── _avatar.scss │ ├── _boxes.scss │ ├── _editor.scss │ ├── _file-content.scss │ ├── _forms.scss │ ├── _labels.scss │ ├── _markup.scss │ ├── button │ │ └── index.scss │ ├── forms │ │ ├── _input.scss │ │ ├── _menu.scss │ │ └── index.scss │ └── index.scss │ ├── index.scss │ ├── modules │ ├── _chroma.scss │ ├── _codemirror.scss │ ├── _monaco.scss │ ├── index.scss │ ├── issues │ │ ├── _issue-sidebar.scss │ │ ├── _issue.scss │ │ ├── _list.scss │ │ └── index.scss │ ├── repo │ │ ├── _file-list.scss │ │ ├── _home.scss │ │ ├── _secondary-navbar.scss │ │ └── index.scss │ └── settings │ │ ├── _pages.scss │ │ ├── index.scss │ │ └── section │ │ ├── _content.scss │ │ ├── _nav.scss │ │ └── index.scss │ └── vars │ ├── _base.scss │ ├── _colors.scss │ └── index.scss ├── tools ├── build.js ├── deploy.js ├── minimize-css.js ├── restart.js ├── serve.js ├── tasks │ ├── copy-to.js │ ├── deploy.js │ ├── fonts.js │ ├── img.js │ ├── optimize-css.js │ ├── restart-service.js │ ├── scss.js │ └── templates.js └── utils │ ├── funcs.js │ ├── logger.js │ └── task-debouncer.js └── 🍵 lugit-theme.code-workspace /.cocorc: -------------------------------------------------------------------------------- 1 | useEmoji: true 2 | askScope: false -------------------------------------------------------------------------------- /.design/logos.ai: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucas-labs/gitea-lugit-theme/HEAD/.design/logos.ai -------------------------------------------------------------------------------- /.eslintrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucas-labs/gitea-lugit-theme/HEAD/.eslintrc.json -------------------------------------------------------------------------------- /.github/workflows/release.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucas-labs/gitea-lugit-theme/HEAD/.github/workflows/release.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucas-labs/gitea-lugit-theme/HEAD/.gitignore -------------------------------------------------------------------------------- /.prettierignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucas-labs/gitea-lugit-theme/HEAD/.prettierignore -------------------------------------------------------------------------------- /.prettierrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucas-labs/gitea-lugit-theme/HEAD/.prettierrc -------------------------------------------------------------------------------- /.vscode/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucas-labs/gitea-lugit-theme/HEAD/.vscode/settings.json -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucas-labs/gitea-lugit-theme/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucas-labs/gitea-lugit-theme/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucas-labs/gitea-lugit-theme/HEAD/README.md -------------------------------------------------------------------------------- /figs/issue.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucas-labs/gitea-lugit-theme/HEAD/figs/issue.png -------------------------------------------------------------------------------- /figs/pr.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucas-labs/gitea-lugit-theme/HEAD/figs/pr.png -------------------------------------------------------------------------------- /figs/repo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucas-labs/gitea-lugit-theme/HEAD/figs/repo.png -------------------------------------------------------------------------------- /figs/settings.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucas-labs/gitea-lugit-theme/HEAD/figs/settings.png -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucas-labs/gitea-lugit-theme/HEAD/package.json -------------------------------------------------------------------------------- /src/themes/img/favicon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucas-labs/gitea-lugit-theme/HEAD/src/themes/img/favicon.svg -------------------------------------------------------------------------------- /src/themes/img/loading.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucas-labs/gitea-lugit-theme/HEAD/src/themes/img/loading.svg -------------------------------------------------------------------------------- /src/themes/img/logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucas-labs/gitea-lugit-theme/HEAD/src/themes/img/logo.svg -------------------------------------------------------------------------------- /src/themes/scss/_utils/_color-utils.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucas-labs/gitea-lugit-theme/HEAD/src/themes/scss/_utils/_color-utils.scss -------------------------------------------------------------------------------- /src/themes/scss/_vars.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucas-labs/gitea-lugit-theme/HEAD/src/themes/scss/_vars.scss -------------------------------------------------------------------------------- /src/themes/scss/auto.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucas-labs/gitea-lugit-theme/HEAD/src/themes/scss/auto.scss -------------------------------------------------------------------------------- /src/themes/scss/dark.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucas-labs/gitea-lugit-theme/HEAD/src/themes/scss/dark.scss -------------------------------------------------------------------------------- /src/themes/scss/light.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucas-labs/gitea-lugit-theme/HEAD/src/themes/scss/light.scss -------------------------------------------------------------------------------- /src/themes/scss/theme/components/_avatar.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucas-labs/gitea-lugit-theme/HEAD/src/themes/scss/theme/components/_avatar.scss -------------------------------------------------------------------------------- /src/themes/scss/theme/components/_boxes.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucas-labs/gitea-lugit-theme/HEAD/src/themes/scss/theme/components/_boxes.scss -------------------------------------------------------------------------------- /src/themes/scss/theme/components/_editor.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucas-labs/gitea-lugit-theme/HEAD/src/themes/scss/theme/components/_editor.scss -------------------------------------------------------------------------------- /src/themes/scss/theme/components/_file-content.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucas-labs/gitea-lugit-theme/HEAD/src/themes/scss/theme/components/_file-content.scss -------------------------------------------------------------------------------- /src/themes/scss/theme/components/_forms.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucas-labs/gitea-lugit-theme/HEAD/src/themes/scss/theme/components/_forms.scss -------------------------------------------------------------------------------- /src/themes/scss/theme/components/_labels.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucas-labs/gitea-lugit-theme/HEAD/src/themes/scss/theme/components/_labels.scss -------------------------------------------------------------------------------- /src/themes/scss/theme/components/_markup.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucas-labs/gitea-lugit-theme/HEAD/src/themes/scss/theme/components/_markup.scss -------------------------------------------------------------------------------- /src/themes/scss/theme/components/button/index.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucas-labs/gitea-lugit-theme/HEAD/src/themes/scss/theme/components/button/index.scss -------------------------------------------------------------------------------- /src/themes/scss/theme/components/forms/_input.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucas-labs/gitea-lugit-theme/HEAD/src/themes/scss/theme/components/forms/_input.scss -------------------------------------------------------------------------------- /src/themes/scss/theme/components/forms/_menu.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucas-labs/gitea-lugit-theme/HEAD/src/themes/scss/theme/components/forms/_menu.scss -------------------------------------------------------------------------------- /src/themes/scss/theme/components/forms/index.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucas-labs/gitea-lugit-theme/HEAD/src/themes/scss/theme/components/forms/index.scss -------------------------------------------------------------------------------- /src/themes/scss/theme/components/index.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucas-labs/gitea-lugit-theme/HEAD/src/themes/scss/theme/components/index.scss -------------------------------------------------------------------------------- /src/themes/scss/theme/index.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucas-labs/gitea-lugit-theme/HEAD/src/themes/scss/theme/index.scss -------------------------------------------------------------------------------- /src/themes/scss/theme/modules/_chroma.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucas-labs/gitea-lugit-theme/HEAD/src/themes/scss/theme/modules/_chroma.scss -------------------------------------------------------------------------------- /src/themes/scss/theme/modules/_codemirror.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucas-labs/gitea-lugit-theme/HEAD/src/themes/scss/theme/modules/_codemirror.scss -------------------------------------------------------------------------------- /src/themes/scss/theme/modules/_monaco.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucas-labs/gitea-lugit-theme/HEAD/src/themes/scss/theme/modules/_monaco.scss -------------------------------------------------------------------------------- /src/themes/scss/theme/modules/index.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucas-labs/gitea-lugit-theme/HEAD/src/themes/scss/theme/modules/index.scss -------------------------------------------------------------------------------- /src/themes/scss/theme/modules/issues/_issue-sidebar.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucas-labs/gitea-lugit-theme/HEAD/src/themes/scss/theme/modules/issues/_issue-sidebar.scss -------------------------------------------------------------------------------- /src/themes/scss/theme/modules/issues/_issue.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucas-labs/gitea-lugit-theme/HEAD/src/themes/scss/theme/modules/issues/_issue.scss -------------------------------------------------------------------------------- /src/themes/scss/theme/modules/issues/_list.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucas-labs/gitea-lugit-theme/HEAD/src/themes/scss/theme/modules/issues/_list.scss -------------------------------------------------------------------------------- /src/themes/scss/theme/modules/issues/index.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucas-labs/gitea-lugit-theme/HEAD/src/themes/scss/theme/modules/issues/index.scss -------------------------------------------------------------------------------- /src/themes/scss/theme/modules/repo/_file-list.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucas-labs/gitea-lugit-theme/HEAD/src/themes/scss/theme/modules/repo/_file-list.scss -------------------------------------------------------------------------------- /src/themes/scss/theme/modules/repo/_home.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucas-labs/gitea-lugit-theme/HEAD/src/themes/scss/theme/modules/repo/_home.scss -------------------------------------------------------------------------------- /src/themes/scss/theme/modules/repo/_secondary-navbar.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucas-labs/gitea-lugit-theme/HEAD/src/themes/scss/theme/modules/repo/_secondary-navbar.scss -------------------------------------------------------------------------------- /src/themes/scss/theme/modules/repo/index.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucas-labs/gitea-lugit-theme/HEAD/src/themes/scss/theme/modules/repo/index.scss -------------------------------------------------------------------------------- /src/themes/scss/theme/modules/settings/_pages.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucas-labs/gitea-lugit-theme/HEAD/src/themes/scss/theme/modules/settings/_pages.scss -------------------------------------------------------------------------------- /src/themes/scss/theme/modules/settings/index.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucas-labs/gitea-lugit-theme/HEAD/src/themes/scss/theme/modules/settings/index.scss -------------------------------------------------------------------------------- /src/themes/scss/theme/modules/settings/section/_content.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucas-labs/gitea-lugit-theme/HEAD/src/themes/scss/theme/modules/settings/section/_content.scss -------------------------------------------------------------------------------- /src/themes/scss/theme/modules/settings/section/_nav.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucas-labs/gitea-lugit-theme/HEAD/src/themes/scss/theme/modules/settings/section/_nav.scss -------------------------------------------------------------------------------- /src/themes/scss/theme/modules/settings/section/index.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucas-labs/gitea-lugit-theme/HEAD/src/themes/scss/theme/modules/settings/section/index.scss -------------------------------------------------------------------------------- /src/themes/scss/theme/vars/_base.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucas-labs/gitea-lugit-theme/HEAD/src/themes/scss/theme/vars/_base.scss -------------------------------------------------------------------------------- /src/themes/scss/theme/vars/_colors.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucas-labs/gitea-lugit-theme/HEAD/src/themes/scss/theme/vars/_colors.scss -------------------------------------------------------------------------------- /src/themes/scss/theme/vars/index.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucas-labs/gitea-lugit-theme/HEAD/src/themes/scss/theme/vars/index.scss -------------------------------------------------------------------------------- /tools/build.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucas-labs/gitea-lugit-theme/HEAD/tools/build.js -------------------------------------------------------------------------------- /tools/deploy.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucas-labs/gitea-lugit-theme/HEAD/tools/deploy.js -------------------------------------------------------------------------------- /tools/minimize-css.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucas-labs/gitea-lugit-theme/HEAD/tools/minimize-css.js -------------------------------------------------------------------------------- /tools/restart.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucas-labs/gitea-lugit-theme/HEAD/tools/restart.js -------------------------------------------------------------------------------- /tools/serve.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucas-labs/gitea-lugit-theme/HEAD/tools/serve.js -------------------------------------------------------------------------------- /tools/tasks/copy-to.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucas-labs/gitea-lugit-theme/HEAD/tools/tasks/copy-to.js -------------------------------------------------------------------------------- /tools/tasks/deploy.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucas-labs/gitea-lugit-theme/HEAD/tools/tasks/deploy.js -------------------------------------------------------------------------------- /tools/tasks/fonts.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucas-labs/gitea-lugit-theme/HEAD/tools/tasks/fonts.js -------------------------------------------------------------------------------- /tools/tasks/img.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucas-labs/gitea-lugit-theme/HEAD/tools/tasks/img.js -------------------------------------------------------------------------------- /tools/tasks/optimize-css.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucas-labs/gitea-lugit-theme/HEAD/tools/tasks/optimize-css.js -------------------------------------------------------------------------------- /tools/tasks/restart-service.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucas-labs/gitea-lugit-theme/HEAD/tools/tasks/restart-service.js -------------------------------------------------------------------------------- /tools/tasks/scss.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucas-labs/gitea-lugit-theme/HEAD/tools/tasks/scss.js -------------------------------------------------------------------------------- /tools/tasks/templates.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucas-labs/gitea-lugit-theme/HEAD/tools/tasks/templates.js -------------------------------------------------------------------------------- /tools/utils/funcs.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucas-labs/gitea-lugit-theme/HEAD/tools/utils/funcs.js -------------------------------------------------------------------------------- /tools/utils/logger.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucas-labs/gitea-lugit-theme/HEAD/tools/utils/logger.js -------------------------------------------------------------------------------- /tools/utils/task-debouncer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucas-labs/gitea-lugit-theme/HEAD/tools/utils/task-debouncer.js -------------------------------------------------------------------------------- /🍵 lugit-theme.code-workspace: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucas-labs/gitea-lugit-theme/HEAD/🍵 lugit-theme.code-workspace --------------------------------------------------------------------------------