Skip to content

Commit

Permalink
theme
Browse files Browse the repository at this point in the history
  • Loading branch information
nguyenngocbinh authored Jul 5, 2024
1 parent 40154c1 commit 6b8c421
Show file tree
Hide file tree
Showing 2 changed files with 88 additions and 0 deletions.
57 changes: 57 additions & 0 deletions theme-dark.scss
Original file line number Diff line number Diff line change
@@ -0,0 +1,57 @@
/*-- scss:defaults --*/

@import 'https://fonts.googleapis.com/css2?family=Atkinson+Hyperlegible&display=swap';

$font-family: "Atkinson Hyperlegible", sans-serif;

// Base document colors
$body-bg: #181818;
$body-color: white;
$link-color: #75AADB;

$light: #525252;

// Navigation element colors
$footer-bg: #181818;
$navbar-bg: #303030;
$sidebar-bg: #303030;

// Code blocks
$code-block-bg-alpha: -.8;

// Bootstrap popovers
$popover-bg: #242424;

// Bootstrap inputs
$input-bg: #242424;


/*-- scss:rules --*/

.layout-example {
background: $gray-700;
}

.render-commit-push {
padding: 0.5em 0.5em 0em 3em;
margin-top: 5px;
margin-bottom: 5px;
background: #181818 5px center/3em no-repeat;
border-top: 1px solid #adadad;
border-bottom: 1px solid #adadad;
background-image: url("images/render-commit-push.png");
background-size: 2em;
background-position: 0.5em 0.5em;
}

.pull {
padding: 0.5em 0.5em 0em 3em;
margin-top: 5px;
margin-bottom: 5px;
background: #181818 5px center/3em no-repeat;
border-top: 1px solid #adadad;
border-bottom: 1px solid #adadad;
background-image: url("images/pull.png");
background-size: 2em;
background-position: 0.5em 0.5em;
}
31 changes: 31 additions & 0 deletions theme.scss
Original file line number Diff line number Diff line change
@@ -0,0 +1,31 @@
/*-- scss:defaults --*/

@import 'https://fonts.googleapis.com/css2?family=Atkinson+Hyperlegible&display=swap';

$font-family: "Atkinson Hyperlegible", sans-serif;

/*-- scss:rules --*/

.render-commit-push {
padding: 0.5em 0.5em 0em 3em;
margin-top: 5px;
margin-bottom: 5px;
background: #f8f8f8 5px center/3em no-repeat;
border-top: 1px solid #5B888C;
border-bottom: 1px solid #5B888C;
background-image: url("images/render-commit-push.png");
background-size: 2em;
background-position: 0.5em 0.5em;
}

.pull {
padding: 0.5em 0.5em 0em 3em;
margin-top: 5px;
margin-bottom: 5px;
background: #f8f8f8 5px center/3em no-repeat;
border-top: 1px solid #E0A890;
border-bottom: 1px solid #E0A890;
background-image: url("images/pull.png");
background-size: 1em;
background-position: 1em 0.5em;
}

0 comments on commit 6b8c421

Please sign in to comment.