feat: organize themes by folders with LICENSE

Sergey Onufrienko created

Change summary

styles/src/themes/andromeda/LICENSE                                | 21 
styles/src/themes/andromeda/andromeda.ts                           |  4 
styles/src/themes/atelier-cave/atelier-cave-dark.ts                |  6 
styles/src/themes/atelier-cave/atelier-cave-light.ts               |  6 
styles/src/themes/atelier-dune/atelier-dune-dark.ts                |  6 
styles/src/themes/atelier-dune/atelier-dune-light.ts               |  6 
styles/src/themes/atelier-estuary/atelier-estuary-dark.ts          |  6 
styles/src/themes/atelier-estuary/atelier-estuary-light.ts         |  6 
styles/src/themes/atelier-forest/atelier-forest-dark.ts            |  6 
styles/src/themes/atelier-forest/atelier-forest-light.ts           |  6 
styles/src/themes/atelier-heath/atelier-heath-dark.ts              |  6 
styles/src/themes/atelier-heath/atelier-heath-light.ts             |  6 
styles/src/themes/atelier-lakeside/atelier-lakeside-dark.ts        |  6 
styles/src/themes/atelier-lakeside/atelier-lakeside-light.ts       |  6 
styles/src/themes/atelier-plateau/atelier-plateau-dark.ts          |  6 
styles/src/themes/atelier-plateau/atelier-plateau-light.ts         |  6 
styles/src/themes/atelier-savanna/atelier-savanna-dark.ts          |  6 
styles/src/themes/atelier-savanna/atelier-savanna-light.ts         |  6 
styles/src/themes/atelier-seaside/atelier-seaside-dark.ts          |  6 
styles/src/themes/atelier-seaside/atelier-seaside-light.ts         |  6 
styles/src/themes/atelier-sulphurpool/atelier-sulphurpool-dark.ts  |  6 
styles/src/themes/atelier-sulphurpool/atelier-sulphurpool-light.ts |  6 
styles/src/themes/ayu/ayu-dark.ts                                  |  4 
styles/src/themes/ayu/ayu-light.ts                                 |  4 
styles/src/themes/ayu/ayu-mirage.ts                                |  4 
styles/src/themes/gruvbox/LICENSE                                  | 21 
styles/src/themes/gruvbox/gruvbox-common.ts                        |  4 
styles/src/themes/gruvbox/gruvbox-dark-hard.ts                     |  0 
styles/src/themes/gruvbox/gruvbox-dark-soft.ts                     |  0 
styles/src/themes/gruvbox/gruvbox-dark.ts                          |  0 
styles/src/themes/gruvbox/gruvbox-light-hard.ts                    |  0 
styles/src/themes/gruvbox/gruvbox-light-soft.ts                    |  0 
styles/src/themes/gruvbox/gruvbox-light.ts                         |  0 
styles/src/themes/one/LICENSE                                      | 21 
styles/src/themes/one/one-dark.ts                                  |  6 
styles/src/themes/one/one-light.ts                                 |  6 
styles/src/themes/rose-pine/LICENSE                                | 21 
styles/src/themes/rose-pine/rose-pine-dawn.ts                      |  4 
styles/src/themes/rose-pine/rose-pine-moon.ts                      |  4 
styles/src/themes/rose-pine/rose-pine.ts                           |  4 
styles/src/themes/sandcastle/LICENSE                               | 21 
styles/src/themes/sandcastle/sandcastle.ts                         |  4 
styles/src/themes/solarized/LICENSE                                | 21 
styles/src/themes/solarized/solarized.ts                           |  4 
styles/src/themes/summercamp/LICENSE                               | 21 
styles/src/themes/summercamp/summercamp.ts                         |  4 
46 files changed, 235 insertions(+), 88 deletions(-)

Detailed changes

styles/src/themes/andromeda/LICENSE πŸ”—

@@ -0,0 +1,21 @@
+The MIT License (MIT)
+
+Copyright (c) 2017 <eliverlara@gmail.com>
+
+Permission is hereby granted, free of charge, to any person obtaining a copy
+of this software and associated documentation files (the "Software"), to deal
+in the Software without restriction, including without limitation the rights
+to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
+copies of the Software, and to permit persons to whom the Software is
+furnished to do so, subject to the following conditions:
+
+The above copyright notice and this permission notice shall be included in all
+copies or substantial portions of the Software.
+
+THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
+IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
+FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
+AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
+LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
+OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
+SOFTWARE.

styles/src/themes/andromeda.ts β†’ styles/src/themes/andromeda/andromeda.ts πŸ”—

@@ -1,6 +1,6 @@
 import chroma from "chroma-js"
-import { Meta } from "./common/colorScheme"
-import { colorRamp, createColorScheme } from "./common/ramps"
+import { Meta } from "../common/colorScheme"
+import { colorRamp, createColorScheme } from "../common/ramps"
 
 const name = "Andromeda"
 

styles/src/themes/atelier-cave-dark.ts β†’ styles/src/themes/atelier-cave/atelier-cave-dark.ts πŸ”—

@@ -1,7 +1,7 @@
 import chroma from "chroma-js"
-import { Meta } from "./common/colorScheme"
-import { colorRamp, createColorScheme } from "./common/ramps"
-import { metaCommon, name, buildSyntax, Variant } from "./common/atelier-common"
+import { Meta } from "../common/colorScheme"
+import { colorRamp, createColorScheme } from "../common/ramps"
+import { metaCommon, name, buildSyntax, Variant } from "../common/atelier-common"
 
 const variant: Variant = {
     meta: {

styles/src/themes/atelier-cave-light.ts β†’ styles/src/themes/atelier-cave/atelier-cave-light.ts πŸ”—

@@ -1,7 +1,7 @@
 import chroma from "chroma-js"
-import { Meta } from "./common/colorScheme"
-import { colorRamp, createColorScheme } from "./common/ramps"
-import { metaCommon, name, buildSyntax, Variant } from "./common/atelier-common"
+import { Meta } from "../common/colorScheme"
+import { colorRamp, createColorScheme } from "../common/ramps"
+import { metaCommon, name, buildSyntax, Variant } from "../common/atelier-common"
 
 const variant: Variant = {
     meta: {

styles/src/themes/atelier-dune-dark.ts β†’ styles/src/themes/atelier-dune/atelier-dune-dark.ts πŸ”—

@@ -1,7 +1,7 @@
 import chroma from "chroma-js"
-import { Meta } from "./common/colorScheme"
-import { colorRamp, createColorScheme } from "./common/ramps"
-import { metaCommon, name, buildSyntax, Variant } from "./common/atelier-common"
+import { Meta } from "../common/colorScheme"
+import { colorRamp, createColorScheme } from "../common/ramps"
+import { metaCommon, name, buildSyntax, Variant } from "../common/atelier-common"
 
 const variant: Variant = {
     meta: {

styles/src/themes/atelier-dune-light.ts β†’ styles/src/themes/atelier-dune/atelier-dune-light.ts πŸ”—

@@ -1,7 +1,7 @@
 import chroma from "chroma-js"
-import { Meta } from "./common/colorScheme"
-import { colorRamp, createColorScheme } from "./common/ramps"
-import { metaCommon, name, buildSyntax, Variant } from "./common/atelier-common"
+import { Meta } from "../common/colorScheme"
+import { colorRamp, createColorScheme } from "../common/ramps"
+import { metaCommon, name, buildSyntax, Variant } from "../common/atelier-common"
 
 const variant: Variant = {
     meta: {

styles/src/themes/atelier-estuary-dark.ts β†’ styles/src/themes/atelier-estuary/atelier-estuary-dark.ts πŸ”—

@@ -1,7 +1,7 @@
 import chroma from "chroma-js"
-import { Meta } from "./common/colorScheme"
-import { colorRamp, createColorScheme } from "./common/ramps"
-import { metaCommon, name, buildSyntax, Variant } from "./common/atelier-common"
+import { Meta } from "../common/colorScheme"
+import { colorRamp, createColorScheme } from "../common/ramps"
+import { metaCommon, name, buildSyntax, Variant } from "../common/atelier-common"
 
 const variant: Variant = {
     meta: {

styles/src/themes/atelier-estuary-light.ts β†’ styles/src/themes/atelier-estuary/atelier-estuary-light.ts πŸ”—

@@ -1,7 +1,7 @@
 import chroma from "chroma-js"
-import { Meta } from "./common/colorScheme"
-import { colorRamp, createColorScheme } from "./common/ramps"
-import { metaCommon, name, buildSyntax, Variant } from "./common/atelier-common"
+import { Meta } from "../common/colorScheme"
+import { colorRamp, createColorScheme } from "../common/ramps"
+import { metaCommon, name, buildSyntax, Variant } from "../common/atelier-common"
 
 const variant: Variant = {
     meta: {

styles/src/themes/atelier-forest-dark.ts β†’ styles/src/themes/atelier-forest/atelier-forest-dark.ts πŸ”—

@@ -1,7 +1,7 @@
 import chroma from "chroma-js"
-import { Meta } from "./common/colorScheme"
-import { colorRamp, createColorScheme } from "./common/ramps"
-import { metaCommon, name, buildSyntax, Variant } from "./common/atelier-common"
+import { Meta } from "../common/colorScheme"
+import { colorRamp, createColorScheme } from "../common/ramps"
+import { metaCommon, name, buildSyntax, Variant } from "../common/atelier-common"
 
 const variant: Variant = {
     meta: {

styles/src/themes/atelier-forest-light.ts β†’ styles/src/themes/atelier-forest/atelier-forest-light.ts πŸ”—

@@ -1,7 +1,7 @@
 import chroma from "chroma-js"
-import { Meta } from "./common/colorScheme"
-import { colorRamp, createColorScheme } from "./common/ramps"
-import { metaCommon, name, buildSyntax, Variant } from "./common/atelier-common"
+import { Meta } from "../common/colorScheme"
+import { colorRamp, createColorScheme } from "../common/ramps"
+import { metaCommon, name, buildSyntax, Variant } from "../common/atelier-common"
 
 const variant: Variant = {
     meta: {

styles/src/themes/atelier-heath-dark.ts β†’ styles/src/themes/atelier-heath/atelier-heath-dark.ts πŸ”—

@@ -1,7 +1,7 @@
 import chroma from "chroma-js"
-import { Meta } from "./common/colorScheme"
-import { colorRamp, createColorScheme } from "./common/ramps"
-import { metaCommon, name, buildSyntax, Variant } from "./common/atelier-common"
+import { Meta } from "../common/colorScheme"
+import { colorRamp, createColorScheme } from "../common/ramps"
+import { metaCommon, name, buildSyntax, Variant } from "../common/atelier-common"
 
 const variant: Variant = {
     meta: {

styles/src/themes/atelier-heath-light.ts β†’ styles/src/themes/atelier-heath/atelier-heath-light.ts πŸ”—

@@ -1,7 +1,7 @@
 import chroma from "chroma-js"
-import { Meta } from "./common/colorScheme"
-import { colorRamp, createColorScheme } from "./common/ramps"
-import { metaCommon, name, buildSyntax, Variant } from "./common/atelier-common"
+import { Meta } from "../common/colorScheme"
+import { colorRamp, createColorScheme } from "../common/ramps"
+import { metaCommon, name, buildSyntax, Variant } from "../common/atelier-common"
 
 const variant: Variant = {
     meta: {

styles/src/themes/atelier-lakeside-dark.ts β†’ styles/src/themes/atelier-lakeside/atelier-lakeside-dark.ts πŸ”—

@@ -1,7 +1,7 @@
 import chroma from "chroma-js"
-import { Meta } from "./common/colorScheme"
-import { colorRamp, createColorScheme } from "./common/ramps"
-import { metaCommon, name, buildSyntax, Variant } from "./common/atelier-common"
+import { Meta } from "../common/colorScheme"
+import { colorRamp, createColorScheme } from "../common/ramps"
+import { metaCommon, name, buildSyntax, Variant } from "../common/atelier-common"
 
 const variant: Variant = {
     meta: {

styles/src/themes/atelier-lakeside-light.ts β†’ styles/src/themes/atelier-lakeside/atelier-lakeside-light.ts πŸ”—

@@ -1,7 +1,7 @@
 import chroma from "chroma-js"
-import { Meta } from "./common/colorScheme"
-import { colorRamp, createColorScheme } from "./common/ramps"
-import { metaCommon, name, buildSyntax, Variant } from "./common/atelier-common"
+import { Meta } from "../common/colorScheme"
+import { colorRamp, createColorScheme } from "../common/ramps"
+import { metaCommon, name, buildSyntax, Variant } from "../common/atelier-common"
 
 const variant: Variant = {
     meta: {

styles/src/themes/atelier-plateau-dark.ts β†’ styles/src/themes/atelier-plateau/atelier-plateau-dark.ts πŸ”—

@@ -1,7 +1,7 @@
 import chroma from "chroma-js"
-import { Meta } from "./common/colorScheme"
-import { colorRamp, createColorScheme } from "./common/ramps"
-import { metaCommon, name, buildSyntax, Variant } from "./common/atelier-common"
+import { Meta } from "../common/colorScheme"
+import { colorRamp, createColorScheme } from "../common/ramps"
+import { metaCommon, name, buildSyntax, Variant } from "../common/atelier-common"
 
 const variant: Variant = {
     meta: {

styles/src/themes/atelier-plateau-light.ts β†’ styles/src/themes/atelier-plateau/atelier-plateau-light.ts πŸ”—

@@ -1,7 +1,7 @@
 import chroma from "chroma-js"
-import { Meta } from "./common/colorScheme"
-import { colorRamp, createColorScheme } from "./common/ramps"
-import { metaCommon, name, buildSyntax, Variant } from "./common/atelier-common"
+import { Meta } from "../common/colorScheme"
+import { colorRamp, createColorScheme } from "../common/ramps"
+import { metaCommon, name, buildSyntax, Variant } from "../common/atelier-common"
 
 const variant: Variant = {
     meta: {

styles/src/themes/atelier-savanna-dark.ts β†’ styles/src/themes/atelier-savanna/atelier-savanna-dark.ts πŸ”—

@@ -1,7 +1,7 @@
 import chroma from "chroma-js"
-import { Meta } from "./common/colorScheme"
-import { colorRamp, createColorScheme } from "./common/ramps"
-import { metaCommon, name, buildSyntax, Variant } from "./common/atelier-common"
+import { Meta } from "../common/colorScheme"
+import { colorRamp, createColorScheme } from "../common/ramps"
+import { metaCommon, name, buildSyntax, Variant } from "../common/atelier-common"
 
 const variant: Variant = {
     meta: {

styles/src/themes/atelier-savanna-light.ts β†’ styles/src/themes/atelier-savanna/atelier-savanna-light.ts πŸ”—

@@ -1,7 +1,7 @@
 import chroma from "chroma-js"
-import { Meta } from "./common/colorScheme"
-import { colorRamp, createColorScheme } from "./common/ramps"
-import { metaCommon, name, buildSyntax, Variant } from "./common/atelier-common"
+import { Meta } from "../common/colorScheme"
+import { colorRamp, createColorScheme } from "../common/ramps"
+import { metaCommon, name, buildSyntax, Variant } from "../common/atelier-common"
 
 const variant: Variant = {
     meta: {

styles/src/themes/atelier-seaside-dark.ts β†’ styles/src/themes/atelier-seaside/atelier-seaside-dark.ts πŸ”—

@@ -1,7 +1,7 @@
 import chroma from "chroma-js"
-import { Meta } from "./common/colorScheme"
-import { colorRamp, createColorScheme } from "./common/ramps"
-import { metaCommon, name, buildSyntax, Variant } from "./common/atelier-common"
+import { Meta } from "../common/colorScheme"
+import { colorRamp, createColorScheme } from "../common/ramps"
+import { metaCommon, name, buildSyntax, Variant } from "../common/atelier-common"
 
 const variant: Variant = {
     meta: {

styles/src/themes/atelier-seaside-light.ts β†’ styles/src/themes/atelier-seaside/atelier-seaside-light.ts πŸ”—

@@ -1,7 +1,7 @@
 import chroma from "chroma-js"
-import { Meta } from "./common/colorScheme"
-import { colorRamp, createColorScheme } from "./common/ramps"
-import { metaCommon, name, buildSyntax, Variant } from "./common/atelier-common"
+import { Meta } from "../common/colorScheme"
+import { colorRamp, createColorScheme } from "../common/ramps"
+import { metaCommon, name, buildSyntax, Variant } from "../common/atelier-common"
 
 const variant: Variant = {
     meta: {

styles/src/themes/atelier-sulphurpool-dark.ts β†’ styles/src/themes/atelier-sulphurpool/atelier-sulphurpool-dark.ts πŸ”—

@@ -1,7 +1,7 @@
 import chroma from "chroma-js"
-import { Meta } from "./common/colorScheme"
-import { colorRamp, createColorScheme } from "./common/ramps"
-import { metaCommon, name, buildSyntax, Variant } from "./common/atelier-common"
+import { Meta } from "../common/colorScheme"
+import { colorRamp, createColorScheme } from "../common/ramps"
+import { metaCommon, name, buildSyntax, Variant } from "../common/atelier-common"
 
 const variant: Variant = {
     meta: {

styles/src/themes/atelier-sulphurpool-light.ts β†’ styles/src/themes/atelier-sulphurpool/atelier-sulphurpool-light.ts πŸ”—

@@ -1,7 +1,7 @@
 import chroma from "chroma-js"
-import { Meta } from "./common/colorScheme"
-import { colorRamp, createColorScheme } from "./common/ramps"
-import { metaCommon, name, buildSyntax, Variant } from "./common/atelier-common"
+import { Meta } from "../common/colorScheme"
+import { colorRamp, createColorScheme } from "../common/ramps"
+import { metaCommon, name, buildSyntax, Variant } from "../common/atelier-common"
 
 const variant: Variant = {
     meta: {

styles/src/themes/ayu-dark.ts β†’ styles/src/themes/ayu/ayu-dark.ts πŸ”—

@@ -1,5 +1,5 @@
-import { createColorScheme } from "./common/ramps"
-import { ayu, meta as themeMeta, buildTheme } from "./common/ayu-common"
+import { createColorScheme } from "../common/ramps"
+import { ayu, meta as themeMeta, buildTheme } from "../common/ayu-common"
 
 export const meta = {
     ...themeMeta,

styles/src/themes/ayu-light.ts β†’ styles/src/themes/ayu/ayu-light.ts πŸ”—

@@ -1,5 +1,5 @@
-import { createColorScheme } from "./common/ramps"
-import { ayu, meta as themeMeta, buildTheme } from "./common/ayu-common"
+import { createColorScheme } from "../common/ramps"
+import { ayu, meta as themeMeta, buildTheme } from "../common/ayu-common"
 
 export const meta = {
     ...themeMeta,

styles/src/themes/ayu-mirage.ts β†’ styles/src/themes/ayu/ayu-mirage.ts πŸ”—

@@ -1,5 +1,5 @@
-import { createColorScheme } from "./common/ramps"
-import { ayu, meta as themeMeta, buildTheme } from "./common/ayu-common"
+import { createColorScheme } from "../common/ramps"
+import { ayu, meta as themeMeta, buildTheme } from "../common/ayu-common"
 
 export const meta = {
     ...themeMeta,

styles/src/themes/gruvbox/LICENSE πŸ”—

@@ -0,0 +1,21 @@
+The MIT License (MIT)
+
+Copyright (c) <YEAR> <COPYRIGHT HOLDER>
+
+Permission is hereby granted, free of charge, to any person obtaining a copy
+of this software and associated documentation files (the "Software"), to deal
+in the Software without restriction, including without limitation the rights
+to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
+copies of the Software, and to permit persons to whom the Software is
+furnished to do so, subject to the following conditions:
+
+The above copyright notice and this permission notice shall be included in all
+copies or substantial portions of the Software.
+
+THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
+IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
+FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
+AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
+LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
+OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
+SOFTWARE.

styles/src/themes/gruvbox-common.ts β†’ styles/src/themes/gruvbox/gruvbox-common.ts πŸ”—

@@ -1,6 +1,6 @@
 import chroma from "chroma-js"
-import { Meta, ThemeSyntax } from "./common/colorScheme"
-import { colorRamp, createColorScheme } from "./common/ramps"
+import { Meta, ThemeSyntax } from "../common/colorScheme"
+import { colorRamp, createColorScheme } from "../common/ramps"
 
 const name = "Gruvbox"
 

styles/src/themes/one/LICENSE πŸ”—

@@ -0,0 +1,21 @@
+The MIT License (MIT)
+
+Copyright (c) 2014 GitHub Inc.
+
+Permission is hereby granted, free of charge, to any person obtaining a copy
+of this software and associated documentation files (the "Software"), to deal
+in the Software without restriction, including without limitation the rights
+to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
+copies of the Software, and to permit persons to whom the Software is
+furnished to do so, subject to the following conditions:
+
+The above copyright notice and this permission notice shall be included in all
+copies or substantial portions of the Software.
+
+THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
+IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
+FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
+AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
+LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
+OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
+SOFTWARE.

styles/src/themes/one-dark.ts β†’ styles/src/themes/one/one-dark.ts πŸ”—

@@ -1,7 +1,7 @@
 import chroma from "chroma-js"
-import { fontWeights } from "../common"
-import { Meta, ThemeSyntax } from "./common/colorScheme"
-import { colorRamp, createColorScheme } from "./common/ramps"
+import { fontWeights } from "../../common"
+import { Meta, ThemeSyntax } from "../common/colorScheme"
+import { colorRamp, createColorScheme } from "../common/ramps"
 
 const name = "One Dark"
 

styles/src/themes/one-light.ts β†’ styles/src/themes/one/one-light.ts πŸ”—

@@ -1,7 +1,7 @@
 import chroma from "chroma-js"
-import { fontWeights } from "../common"
-import { Meta, ThemeSyntax } from "./common/colorScheme"
-import { colorRamp, createColorScheme } from "./common/ramps"
+import { fontWeights } from "../../common"
+import { Meta, ThemeSyntax } from "../common/colorScheme"
+import { colorRamp, createColorScheme } from "../common/ramps"
 
 const name = "One Light"
 

styles/src/themes/rose-pine/LICENSE πŸ”—

@@ -0,0 +1,21 @@
+The MIT License (MIT)
+
+Copyright (c) 2021 Emilia Dunfelt
+
+Permission is hereby granted, free of charge, to any person obtaining a copy
+of this software and associated documentation files (the "Software"), to deal
+in the Software without restriction, including without limitation the rights
+to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
+copies of the Software, and to permit persons to whom the Software is
+furnished to do so, subject to the following conditions:
+
+The above copyright notice and this permission notice shall be included in all
+copies or substantial portions of the Software.
+
+THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
+IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
+FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
+AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
+LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
+OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
+SOFTWARE.

styles/src/themes/rose-pine-dawn.ts β†’ styles/src/themes/rose-pine/rose-pine-dawn.ts πŸ”—

@@ -1,6 +1,6 @@
 import chroma from "chroma-js"
-import { Meta } from "./common/colorScheme"
-import { colorRamp, createColorScheme } from "./common/ramps"
+import { Meta } from "../common/colorScheme"
+import { colorRamp, createColorScheme } from "../common/ramps"
 
 const name = "RosΓ© Pine Dawn"
 

styles/src/themes/rose-pine-moon.ts β†’ styles/src/themes/rose-pine/rose-pine-moon.ts πŸ”—

@@ -1,6 +1,6 @@
 import chroma from "chroma-js"
-import { Meta } from "./common/colorScheme"
-import { colorRamp, createColorScheme } from "./common/ramps"
+import { Meta } from "../common/colorScheme"
+import { colorRamp, createColorScheme } from "../common/ramps"
 
 const name = "RosΓ© Pine Moon"
 

styles/src/themes/rose-pine.ts β†’ styles/src/themes/rose-pine/rose-pine.ts πŸ”—

@@ -1,6 +1,6 @@
 import chroma from "chroma-js"
-import { Meta } from "./common/colorScheme"
-import { colorRamp, createColorScheme } from "./common/ramps"
+import { Meta } from "../common/colorScheme"
+import { colorRamp, createColorScheme } from "../common/ramps"
 
 const name = "RosΓ© Pine"
 

styles/src/themes/sandcastle/LICENSE πŸ”—

@@ -0,0 +1,21 @@
+The MIT License (MIT)
+
+Copyright (c) 2019 George Essig
+
+Permission is hereby granted, free of charge, to any person obtaining a copy
+of this software and associated documentation files (the "Software"), to deal
+in the Software without restriction, including without limitation the rights
+to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
+copies of the Software, and to permit persons to whom the Software is
+furnished to do so, subject to the following conditions:
+
+The above copyright notice and this permission notice shall be included in all
+copies or substantial portions of the Software.
+
+THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
+IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
+FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
+AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
+LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
+OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
+SOFTWARE.

styles/src/themes/sandcastle.ts β†’ styles/src/themes/sandcastle/sandcastle.ts πŸ”—

@@ -1,6 +1,6 @@
 import chroma from "chroma-js"
-import { Meta } from "./common/colorScheme"
-import { colorRamp, createColorScheme } from "./common/ramps"
+import { Meta } from "../common/colorScheme"
+import { colorRamp, createColorScheme } from "../common/ramps"
 
 const name = "Sandcastle"
 

styles/src/themes/solarized/LICENSE πŸ”—

@@ -0,0 +1,21 @@
+The MIT License (MIT)
+
+Copyright (c) 2011 Ethan Schoonover
+
+Permission is hereby granted, free of charge, to any person obtaining a copy
+of this software and associated documentation files (the "Software"), to deal
+in the Software without restriction, including without limitation the rights
+to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
+copies of the Software, and to permit persons to whom the Software is
+furnished to do so, subject to the following conditions:
+
+The above copyright notice and this permission notice shall be included in all
+copies or substantial portions of the Software.
+
+THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
+IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
+FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
+AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
+LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
+OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
+SOFTWARE.

styles/src/themes/solarized.ts β†’ styles/src/themes/solarized/solarized.ts πŸ”—

@@ -1,6 +1,6 @@
 import chroma from "chroma-js"
-import { Meta as Metadata } from "./common/colorScheme"
-import { colorRamp, createColorScheme } from "./common/ramps"
+import { Meta as Metadata } from "../common/colorScheme"
+import { colorRamp, createColorScheme } from "../common/ramps"
 
 const name = "Solarized"
 

styles/src/themes/summercamp/LICENSE πŸ”—

@@ -0,0 +1,21 @@
+The MIT License (MIT)
+
+Copyright (c) 2019 Zoe FiriH
+
+Permission is hereby granted, free of charge, to any person obtaining a copy
+of this software and associated documentation files (the "Software"), to deal
+in the Software without restriction, including without limitation the rights
+to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
+copies of the Software, and to permit persons to whom the Software is
+furnished to do so, subject to the following conditions:
+
+The above copyright notice and this permission notice shall be included in all
+copies or substantial portions of the Software.
+
+THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
+IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
+FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
+AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
+LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
+OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
+SOFTWARE.

styles/src/themes/summercamp.ts β†’ styles/src/themes/summercamp/summercamp.ts πŸ”—

@@ -1,6 +1,6 @@
 import chroma from "chroma-js"
-import { Meta } from "./common/colorScheme"
-import { colorRamp, createColorScheme } from "./common/ramps"
+import { Meta } from "../common/colorScheme"
+import { colorRamp, createColorScheme } from "../common/ramps"
 
 const name = "Summercamp"