Compare commits

...

2 Commits

Author SHA1 Message Date
Ceda EI 7bd0fcc621 Turn background light. 2020-07-15 20:47:26 +05:30
Ceda EI e718672b58 Use tomorrow instead of tomorrow-night-bright. 2020-07-15 18:14:33 +05:30
3 changed files with 17 additions and 19 deletions

View File

@ -1,5 +1,5 @@
body { body {
background: #0b0a16; background: #fcfcfc;
padding: 20px 50px; padding: 20px 50px;
margin: 0px; margin: 0px;
} }
@ -9,7 +9,7 @@ body {
textarea { textarea {
background: transparent; background: transparent;
border: 0px; border: 0px;
color: #fff; color: #000;
padding: 0px; padding: 0px;
width: 100%; width: 100%;
height: 100%; height: 100%;
@ -43,7 +43,7 @@ textarea {
outline: none; outline: none;
font-size: 13px; font-size: 13px;
overflow: inherit; overflow: inherit;
background: #0b0a16; background: #fcfcfc;
} }
#box code { #box code {
@ -63,11 +63,11 @@ textarea {
#box1 { #box1 {
padding: 5px; padding: 5px;
text-align: center; text-align: center;
background: #0b0a16; background: #fcfcfc;
} }
#box2 { #box2 {
background: #0b0a16; background: #fcfcfc;
font-size: 0px; font-size: 0px;
padding: 0px 5px; padding: 0px 5px;
} }
@ -113,7 +113,7 @@ textarea {
} }
#box3, #messages li { #box3, #messages li {
background: #0b0a16; background: #fcfcfc;
font-family: Helvetica, sans-serif; font-family: Helvetica, sans-serif;
font-size: 12px; font-size: 12px;
line-height: 14px; line-height: 14px;
@ -161,7 +161,7 @@ textarea {
} }
#messages li { #messages li {
background:rgba(11,10,22,0.8); background:rgba(252,252,252,0.8);
margin:0 auto; margin:0 auto;
list-style:none; list-style:none;
} }

View File

@ -4,7 +4,7 @@
<title>hastebin</title> <title>hastebin</title>
<meta charset="utf-8" /> <meta charset="utf-8" />
<link rel="stylesheet" type="text/css" href="tomorrow-night-bright.css"/> <link rel="stylesheet" type="text/css" href="tomorrow.css"/>
<link rel="stylesheet" type="text/css" href="application.css"/> <link rel="stylesheet" type="text/css" href="application.css"/>
<script type="text/javascript" src="jquery.min.js"></script> <script type="text/javascript" src="jquery.min.js"></script>

View File

@ -1,11 +1,9 @@
/* Tomorrow Night Bright Theme */
/* Original theme - https://github.com/chriskempson/tomorrow-theme */
/* http://jmblog.github.com/color-themes-for-google-code-highlightjs */ /* http://jmblog.github.com/color-themes-for-google-code-highlightjs */
/* Tomorrow Comment */ /* Tomorrow Comment */
.hljs-comment, .hljs-comment,
.hljs-quote { .hljs-quote {
color: #969896; color: #8e908c;
} }
/* Tomorrow Red */ /* Tomorrow Red */
@ -17,7 +15,7 @@
.hljs-selector-class, .hljs-selector-class,
.hljs-regexp, .hljs-regexp,
.hljs-deletion { .hljs-deletion {
color: #d54e53; color: #c82829;
} }
/* Tomorrow Orange */ /* Tomorrow Orange */
@ -29,12 +27,12 @@
.hljs-params, .hljs-params,
.hljs-meta, .hljs-meta,
.hljs-link { .hljs-link {
color: #e78c45; color: #f5871f;
} }
/* Tomorrow Yellow */ /* Tomorrow Yellow */
.hljs-attribute { .hljs-attribute {
color: #e7c547; color: #eab700;
} }
/* Tomorrow Green */ /* Tomorrow Green */
@ -42,26 +40,26 @@
.hljs-symbol, .hljs-symbol,
.hljs-bullet, .hljs-bullet,
.hljs-addition { .hljs-addition {
color: #b9ca4a; color: #718c00;
} }
/* Tomorrow Blue */ /* Tomorrow Blue */
.hljs-title, .hljs-title,
.hljs-section { .hljs-section {
color: #7aa6da; color: #4271ae;
} }
/* Tomorrow Purple */ /* Tomorrow Purple */
.hljs-keyword, .hljs-keyword,
.hljs-selector-tag { .hljs-selector-tag {
color: #c397d8; color: #8959a8;
} }
.hljs { .hljs {
display: block; display: block;
overflow-x: auto; overflow-x: auto;
background: black; background: white;
color: #eaeaea; color: #4d4d4c;
padding: 0.5em; padding: 0.5em;
} }