diff --git a/index.less b/index.less new file mode 100644 index 0000000..4b6ec76 --- /dev/null +++ b/index.less @@ -0,0 +1,14 @@ +@import 'stylesheets/atom'; +@import 'stylesheets/utilities'; +@import 'stylesheets/text'; +@import 'stylesheets/git'; +@import 'stylesheets/sites'; +@import 'stylesheets/loading'; +@import 'stylesheets/buttons'; +@import 'stylesheets/panels'; +@import 'stylesheets/panes'; +@import 'stylesheets/lists'; +@import 'stylesheets/editor'; +@import 'stylesheets/tabs'; +@import 'stylesheets/overlays'; +@import 'stylesheets/dropdowns'; diff --git a/package.cson b/package.cson deleted file mode 100644 index 6a4d360..0000000 --- a/package.cson +++ /dev/null @@ -1,16 +0,0 @@ -'stylesheets': [ - 'atom' - 'utilities' - 'text' - 'git' - 'sites' - 'loading' - 'buttons' - 'panels' - 'panes' - 'lists' - 'editor' - 'tabs' - 'overlays' - 'dropdowns' -] diff --git a/package.json b/package.json new file mode 100644 index 0000000..a3ce322 --- /dev/null +++ b/package.json @@ -0,0 +1,19 @@ +{ + "name": "atom-ui-dark", + "theme": true, + "version": "0.0.0", + "description": "Default dark theme for interface components", + "repository": { + "type": "git", + "url": "https://github.com/atom/atom-dark-ui.git" + }, + "bugs": { + "url": "https://github.com/atom/atom-dark-ui/issues" + }, + "engines": { + "atom": ">26.0" + }, + "publishConfig": { + "registry": "https://atom.iriscouch.com/registry/_design/app/_rewrite" + } +} diff --git a/atom.less b/stylesheets/atom.less similarity index 100% rename from atom.less rename to stylesheets/atom.less diff --git a/buttons.less b/stylesheets/buttons.less similarity index 100% rename from buttons.less rename to stylesheets/buttons.less diff --git a/editor.less b/stylesheets/editor.less similarity index 100% rename from editor.less rename to stylesheets/editor.less diff --git a/git.less b/stylesheets/git.less similarity index 100% rename from git.less rename to stylesheets/git.less diff --git a/lists.less b/stylesheets/lists.less similarity index 100% rename from lists.less rename to stylesheets/lists.less diff --git a/loading.less b/stylesheets/loading.less similarity index 100% rename from loading.less rename to stylesheets/loading.less diff --git a/overlays.less b/stylesheets/overlays.less similarity index 100% rename from overlays.less rename to stylesheets/overlays.less diff --git a/panels.less b/stylesheets/panels.less similarity index 100% rename from panels.less rename to stylesheets/panels.less diff --git a/sites.less b/stylesheets/sites.less similarity index 100% rename from sites.less rename to stylesheets/sites.less diff --git a/tabs.less b/stylesheets/tabs.less similarity index 100% rename from tabs.less rename to stylesheets/tabs.less diff --git a/text.less b/stylesheets/text.less similarity index 100% rename from text.less rename to stylesheets/text.less diff --git a/ui-mixins.less b/stylesheets/ui-mixins.less similarity index 100% rename from ui-mixins.less rename to stylesheets/ui-mixins.less diff --git a/ui-variables.less b/stylesheets/ui-variables.less similarity index 100% rename from ui-variables.less rename to stylesheets/ui-variables.less diff --git a/utilities.less b/stylesheets/utilities.less similarity index 100% rename from utilities.less rename to stylesheets/utilities.less