diff --git a/butterfly/scss/_16_colors.scss b/butterfly/scss/_16_colors.scss deleted file mode 100644 index 0c2c525..0000000 --- a/butterfly/scss/_16_colors.scss +++ /dev/null @@ -1,16 +0,0 @@ -@include termcolor(0, #2e3436); -@include termcolor(1, #cc0000); -@include termcolor(2, #4e9a06); -@include termcolor(3, #c4a000); -@include termcolor(4, #3465a4); -@include termcolor(5, #75507b); -@include termcolor(6, #06989a); -@include termcolor(7, #d3d7cf); -@include termcolor(8, #555753); -@include termcolor(9, #ef2929); -@include termcolor(10, #8ae234); -@include termcolor(11, #fce94f); -@include termcolor(12, #729fcf); -@include termcolor(13, #ad7fa8); -@include termcolor(14, #34e2e2); -@include termcolor(15, #eeeeec); \ No newline at end of file diff --git a/butterfly/scss/_256_colors.scss b/butterfly/scss/_256_colors.scss deleted file mode 100644 index f489e76..0000000 --- a/butterfly/scss/_256_colors.scss +++ /dev/null @@ -1,13 +0,0 @@ -$fg: #fff !default; -$bg: #000 !default; -$st: 00, 95, 135, 175, 215, 255; -@for $i from 0 through 215{ - $r: nth($st, 1 + floor(($i / 36) % 6)); - $g: nth($st, 1 + floor(($i / 6) % 6)); - $b: nth($st, 1 + $i % 6); - @include termcolor($i + 16, rgb($r, $g, $b));} -@for $i from 0 through 23{ - $l: 8 + $i * 10; - @include termcolor($i + 232, rgb($l, $l, $l));} -@include termcolor(256, $bg); -@include termcolor(257, $fg); \ No newline at end of file diff --git a/butterfly/scss/_colors.scss b/butterfly/scss/_colors.scss deleted file mode 100644 index 9be123d..0000000 --- a/butterfly/scss/_colors.scss +++ /dev/null @@ -1,20 +0,0 @@ -$shadow: 0 !default; -$shadow-alpha: 0 !default; -$bg: #110f13; -$fg: #f4ead5; -#wrapper{ - background-color: $bg;} -.terminal{ - background-color: $bg; - color: $fg;} -@mixin termcolor($i, $color){ - .bg-color-#{$i}{ - background-color: $color; - &.reverse-video{ - color: $color !important;}} - .fg-color-#{$i}{ - color: $color; - &.reverse-video{ - background-color: $color !important;} - @if $shadow != 0{ - text-shadow: 0 0 $shadow rgba($color, $shadow-alpha);}}} \ No newline at end of file diff --git a/butterfly/scss/_cursor.scss b/butterfly/scss/_cursor.scss deleted file mode 100644 index 123367d..0000000 --- a/butterfly/scss/_cursor.scss +++ /dev/null @@ -1,6 +0,0 @@ -$fg: #fff !default; -$shadow-alpha: 0 !default; -.focus .cursor{ - transition: 300ms;} -.cursor.reverse-video{ - box-shadow: 0 0 $shadow-alpha $fg;} \ No newline at end of file diff --git a/butterfly/scss/_font.scss b/butterfly/scss/_font.scss deleted file mode 100644 index 5cd0b3a..0000000 --- a/butterfly/scss/_font.scss +++ /dev/null @@ -1,10 +0,0 @@ -$weights: (ExtraLight 100) (Light 300) (Regular 400) (Medium 500) (Semibold 600) (Bold 700) (Black 900); -@each $weight in $weights{ - $weight_name: nth($weight, 1); - @font-face{ - font-family: "SourceCodePro"; - src: url("/static/fonts/SourceCodePro-#{$weight_name}.otf") format("woff"); - font-weight: nth($weight, 2);}} -body{ - font-family: "SourceCodePro"; - line-height: 1.2;} \ No newline at end of file diff --git a/butterfly/scss/_fx.scss b/butterfly/scss/_fx.scss deleted file mode 100644 index 1129005..0000000 --- a/butterfly/scss/_fx.scss +++ /dev/null @@ -1,28 +0,0 @@ -$fg: #fff !default; -$shadow: 6px !default; -$shadow-alpha: .5 !default; -.terminal{ - text-shadow: 0 0 $shadow rgba($fg, $shadow-alpha); - transition: 200ms; - &.bell{ - -webkit-filter: blur(2px);} - &.skip{ - -webkit-filter: sepia(1);} - &.selection{ - -webkit-filter: unquote("saturate(2)");} - &.dead{ - -webkit-filter: unquote("grayscale(1)"); - &:after{ - content: "CLOSED"; - font-size: 15em; - display: flex; - justify-content: center; - align-items: center; - position: fixed; - top: 0; - left: 0; - width: 100%; - height: 100%; - transform: rotate(-45deg); - opacity: .2; - font-weight: 900;}}} \ No newline at end of file diff --git a/butterfly/scss/_layout.scss b/butterfly/scss/_layout.scss deleted file mode 100644 index f01fba8..0000000 --- a/butterfly/scss/_layout.scss +++ /dev/null @@ -1,11 +0,0 @@ -html, body{ - height: 100%; - margin: 0; - padding: 0; - line-height: 1.2;} -#wrapper{ - height: 100%; - overflow: hidden; - white-space: nowrap;} -.terminal{ - outline: none;} \ No newline at end of file diff --git a/butterfly/scss/_term_styles.scss b/butterfly/scss/_term_styles.scss deleted file mode 100644 index dbd828a..0000000 --- a/butterfly/scss/_term_styles.scss +++ /dev/null @@ -1,15 +0,0 @@ -$fg: #fff !default; -$bg: #000 !default; -.bold{ - font-weight: bold;} -.underline{ - text-decoration: underline;} -.blink{ - text-decoration: blink;} -.invisible{ - visibility: hidden;} -.reverse-video{ - color: $bg; - background-color: $fg;} -.blur .cursor.reverse-video{ - background: none;} \ No newline at end of file diff --git a/butterfly/scss/main.scss b/butterfly/scss/main.scss deleted file mode 100644 index 1373d16..0000000 --- a/butterfly/scss/main.scss +++ /dev/null @@ -1,8 +0,0 @@ -@import 'font'; -@import 'layout'; -@import 'fx'; -@import 'colors'; -@import '16_colors'; -@import '256_colors'; -@import 'cursor'; -@import 'term_styles'; \ No newline at end of file diff --git a/package.json b/package.json index 3a2bec2..651678f 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "butterfly", - "version": "1.5.2", + "version": "1.5.5", "description": "A sleek web based terminal emulator", "repository": { "type": "git",