Skip to content

Commit 53b298f

Browse files
committed
Merge pull request #122 from sluenenglish/master
Added yellow theme for Geraint
2 parents 30a8879 + be87d08 commit 53b298f

File tree

2 files changed

+62
-1
lines changed

2 files changed

+62
-1
lines changed

_data/themes.yml

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,4 +6,9 @@
66
- name: Not Yet Implemented
77
shortname: todo
88
version: 0.1
9-
author: Alex
9+
author: Alex
10+
11+
- name: Geraint's Theme
12+
shortname: yellow
13+
version: 0.1
14+
author: Sam

css/yellow.scss

Lines changed: 56 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,56 @@
1+
---
2+
3+
---
4+
@charset "utf-8";
5+
6+
7+
// Variables
8+
$font: Helvetica, Arial, sans-serif;
9+
$title-font-size: 42px;
10+
$menu-font-size: 26px;
11+
$base-font-size: 16px;
12+
13+
$text-color: #ff9900;
14+
$link-color: #99ff33;
15+
$meta-color: #ff9900;
16+
$background-color: #ffff1a;
17+
18+
$background-url: url(../res/backround_images/background.png);
19+
$quote-border-style: 4px solid #e8e8e8;
20+
$menu-border-style: 1px solid $link-color;
21+
22+
// Syntax Highlighting
23+
$code-color: #000000;
24+
$code-string: #dd1144;
25+
$code-numeral: #009999;
26+
$code-variable: #008080;
27+
$code-comment: #999988;
28+
$code-function: #990000;
29+
$code-type: #445588;
30+
$code-background: #ff9900;
31+
$code-border-style: 1px solid #d5d5e9;
32+
33+
$content-width: 800px;
34+
35+
$desktop: $content-width;
36+
$wide-desktop: 1260px;
37+
$mobile: 600px;
38+
39+
40+
41+
@import
42+
"_layouts/mixins",
43+
"_layouts/base",
44+
"_layouts/catmenu",
45+
"_layouts/post",
46+
"_layouts/postlists",
47+
"_layouts/sessions",
48+
"_layouts/media",
49+
50+
"_elements/base",
51+
"_elements/catmenu",
52+
"_elements/codesnippets",
53+
"_elements/post",
54+
"_elements/postlists",
55+
"_elements/sessions"
56+

0 commit comments

Comments
 (0)