├── .github └── renovate.json ├── CHANGELOG.md ├── LICENSE.md ├── README.md ├── index.less ├── package.json ├── pnpm-workspace.yaml └── styles ├── base.less ├── buttons.less ├── editor.less ├── find-and-replace.less ├── git.less ├── key-binding.less ├── lists.less ├── panels.less ├── progress.less ├── sites.less ├── status-bar.less ├── tabs.less ├── text.less ├── tooltips.less ├── tree-view.less └── ui-variables.less /.github/renovate.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atom-community/ui-theme-template/HEAD/.github/renovate.json -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atom-community/ui-theme-template/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atom-community/ui-theme-template/HEAD/LICENSE.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atom-community/ui-theme-template/HEAD/README.md -------------------------------------------------------------------------------- /index.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atom-community/ui-theme-template/HEAD/index.less -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atom-community/ui-theme-template/HEAD/package.json -------------------------------------------------------------------------------- /pnpm-workspace.yaml: -------------------------------------------------------------------------------- 1 | packages: 2 | - "." 3 | -------------------------------------------------------------------------------- /styles/base.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atom-community/ui-theme-template/HEAD/styles/base.less -------------------------------------------------------------------------------- /styles/buttons.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atom-community/ui-theme-template/HEAD/styles/buttons.less -------------------------------------------------------------------------------- /styles/editor.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atom-community/ui-theme-template/HEAD/styles/editor.less -------------------------------------------------------------------------------- /styles/find-and-replace.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atom-community/ui-theme-template/HEAD/styles/find-and-replace.less -------------------------------------------------------------------------------- /styles/git.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atom-community/ui-theme-template/HEAD/styles/git.less -------------------------------------------------------------------------------- /styles/key-binding.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atom-community/ui-theme-template/HEAD/styles/key-binding.less -------------------------------------------------------------------------------- /styles/lists.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atom-community/ui-theme-template/HEAD/styles/lists.less -------------------------------------------------------------------------------- /styles/panels.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atom-community/ui-theme-template/HEAD/styles/panels.less -------------------------------------------------------------------------------- /styles/progress.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atom-community/ui-theme-template/HEAD/styles/progress.less -------------------------------------------------------------------------------- /styles/sites.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atom-community/ui-theme-template/HEAD/styles/sites.less -------------------------------------------------------------------------------- /styles/status-bar.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atom-community/ui-theme-template/HEAD/styles/status-bar.less -------------------------------------------------------------------------------- /styles/tabs.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atom-community/ui-theme-template/HEAD/styles/tabs.less -------------------------------------------------------------------------------- /styles/text.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atom-community/ui-theme-template/HEAD/styles/text.less -------------------------------------------------------------------------------- /styles/tooltips.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atom-community/ui-theme-template/HEAD/styles/tooltips.less -------------------------------------------------------------------------------- /styles/tree-view.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atom-community/ui-theme-template/HEAD/styles/tree-view.less -------------------------------------------------------------------------------- /styles/ui-variables.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atom-community/ui-theme-template/HEAD/styles/ui-variables.less --------------------------------------------------------------------------------