From d709c549ed8e2d09147763d697ad146f7c8b7fbb Mon Sep 17 00:00:00 2001 From: Matt Colyer Date: Wed, 11 Sep 2013 16:30:44 -0700 Subject: [PATCH] Make it a package --- index.less | 14 ++++++++++++++ package.cson | 16 ---------------- package.json | 19 +++++++++++++++++++ atom.less => stylesheets/atom.less | 0 buttons.less => stylesheets/buttons.less | 0 editor.less => stylesheets/editor.less | 0 git.less => stylesheets/git.less | 0 lists.less => stylesheets/lists.less | 0 loading.less => stylesheets/loading.less | 0 overlays.less => stylesheets/overlays.less | 0 panels.less => stylesheets/panels.less | 0 sites.less => stylesheets/sites.less | 0 tabs.less => stylesheets/tabs.less | 0 text.less => stylesheets/text.less | 0 ui-mixins.less => stylesheets/ui-mixins.less | 0 .../ui-variables.less | 0 utilities.less => stylesheets/utilities.less | 0 17 files changed, 33 insertions(+), 16 deletions(-) create mode 100644 index.less delete mode 100644 package.cson create mode 100644 package.json rename atom.less => stylesheets/atom.less (100%) rename buttons.less => stylesheets/buttons.less (100%) rename editor.less => stylesheets/editor.less (100%) rename git.less => stylesheets/git.less (100%) rename lists.less => stylesheets/lists.less (100%) rename loading.less => stylesheets/loading.less (100%) rename overlays.less => stylesheets/overlays.less (100%) rename panels.less => stylesheets/panels.less (100%) rename sites.less => stylesheets/sites.less (100%) rename tabs.less => stylesheets/tabs.less (100%) rename text.less => stylesheets/text.less (100%) rename ui-mixins.less => stylesheets/ui-mixins.less (100%) rename ui-variables.less => stylesheets/ui-variables.less (100%) rename utilities.less => stylesheets/utilities.less (100%) 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