sneed
This commit is contained in:
parent
f17b737f0b
commit
903ccd48a4
3 changed files with 106 additions and 1 deletions
|
@ -1,4 +1,4 @@
|
|||
for theme in ['dark', 'light', 'coffee', 'tron', '4chan']:
|
||||
for theme in ['midnight', 'dark', 'light', 'coffee', 'tron', '4chan']:
|
||||
with open(f"./drama/assets/style/{theme}_ff66ac.css", encoding='utf-8') as t:
|
||||
text = t.read()
|
||||
for color in ['ff66ac','805ad5','62ca56','38a169','80ffff','2a96f3','62ca56','eb4963','ff0000','f39731','30409f','3e98a7','e4432d','7b9ae4','ec72de','7f8fa6', 'f8db58']:
|
||||
|
|
104
drama/assets/style/midnight.scss
Normal file
104
drama/assets/style/midnight.scss
Normal file
|
@ -0,0 +1,104 @@
|
|||
// Colors
|
||||
|
||||
$primary: #c9d1d9;
|
||||
$dark: #8b949e;
|
||||
$secondary: #8b949e;
|
||||
$danger: #da3633;
|
||||
$white: #c9d1d9;
|
||||
$black: #c9d1d9;
|
||||
$light: #b1bac4;
|
||||
$success: #3fb950;
|
||||
$muted: #c9d1d9;
|
||||
$info: #168EEA;
|
||||
|
||||
$purple: #a371f7;
|
||||
$red: #da3633;
|
||||
$gray: #8b949e;
|
||||
$green: #3fb950;
|
||||
|
||||
$gray-100: #c9d1d9;
|
||||
$gray-200: #b1bac4;
|
||||
$gray-300: #8b949e;
|
||||
$gray-400: #6e7681;
|
||||
$gray-500: #484f58;
|
||||
$gray-600: #30363d;
|
||||
$gray-700: #21262d;
|
||||
$gray-800: #161b22;
|
||||
$gray-900: #0d1117;
|
||||
|
||||
$bg-dark: #090c10;
|
||||
|
||||
$upvote: #ff66ac;
|
||||
$downvote: #38B2AC;
|
||||
$admin: #ff66ac;
|
||||
$banned: #960000;
|
||||
$deleted: #969600;
|
||||
$deletedandbanned: #964000;
|
||||
$mod: #07c20c;
|
||||
$code: #e83e8c;
|
||||
|
||||
$gold: #ECC94B;
|
||||
$reddit: #ED4630;
|
||||
|
||||
@import "./node_modules/bootstrap/scss/bootstrap.scss";
|
||||
@import "./main.scss";
|
||||
|
||||
body {
|
||||
background-color: $bg-dark !important;
|
||||
}
|
||||
|
||||
.navbar-light, .navbar-dark {
|
||||
background-color: $gray-800 !important;
|
||||
}
|
||||
|
||||
.form-control {
|
||||
border: 1px solid $gray-700 !important;
|
||||
}
|
||||
|
||||
#frontpage .posts .card, #userpage .posts .card, #search .posts .card, #guild .posts .card, #settings-guild .posts .card {
|
||||
margin-bottom: 1rem !important;
|
||||
border: 1px solid $gray-600 !important;
|
||||
}
|
||||
|
||||
// * {
|
||||
// border-color: $primary;
|
||||
// }
|
||||
|
||||
// .border {
|
||||
// border-color: $primary !important;
|
||||
// }
|
||||
|
||||
// .form-control {
|
||||
// background: transparent;
|
||||
// border-color: $primary !important;
|
||||
// }
|
||||
|
||||
// .btn {
|
||||
// background: transparent;
|
||||
// border-color: $primary !important;
|
||||
// }
|
||||
|
||||
// .form-control:disabled, .form-control[readonly] {
|
||||
// background: transparent;
|
||||
// border-color: $primary !important;
|
||||
// }
|
||||
|
||||
// .btn-success {
|
||||
// border-color: #38A169 !important;
|
||||
// }
|
||||
|
||||
// .btn-danger {
|
||||
// border-color: #E53E3E !important;
|
||||
// }
|
||||
|
||||
// #frontpage .pseudo-submit-form.card .card-body .form-control, #guild .pseudo-submit-form.card .card-body .form-control {
|
||||
// border-color: transparent !important;
|
||||
// }
|
||||
|
||||
// .btn-lg {
|
||||
// border-color: transparent !important;
|
||||
// }
|
||||
|
||||
// pre {
|
||||
// color: #CFCFCF;
|
||||
// }
|
1
push.sh
1
push.sh
|
@ -4,6 +4,7 @@ git commit -m "sneed"
|
|||
git push
|
||||
|
||||
apt install ruby-sass
|
||||
sass ./drama/assets/style/midnight.scss ./drama/assets/style/midnight_ff66ac.css
|
||||
sass ./drama/assets/style/dark.scss ./drama/assets/style/dark_ff66ac.css
|
||||
sass ./drama/assets/style/light.scss ./drama/assets/style/light_ff66ac.css
|
||||
sass ./drama/assets/style/coffee.scss ./drama/assets/style/coffee_ff66ac.css
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue