summaryrefslogtreecommitdiff
path: root/sass/_predefined.scss
blob: 105172dd234b66cf60ecb12bbb9265b47c54ee5d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
// Colors
//

//bkup hermit colors
//$theme: #018574; // links // green
//$text: #c6cddb; // general text // white grey
//$light-grey: #494f5c; // bg // all below are grey darkish
//$dark-grey: #3b3e48;
//$highlight-grey: #7d828a;
//$midnightblue: #2b303b; //#31333d; // to fix code syntax highlighting

// Alphara banner pic colors

//$theme: #8dabd0; // links // green
//$text: #8dabd0; // fg // general text // white
//$light-grey: #4e6695; // bg // blue
//$dark-grey: #4e6695;
//$highlight-grey: #4e6695;
//$midnightblue: #2b303b; // to fix code syntax highlighting

// My X11 colors

$theme: #e94c80;
$text: #ace6f0; // fg // general text // white
$light-grey: #0a001f; // bg // blue
$dark-grey: #0a001f;
$highlight-grey: #828ff9;

$midnightblue: #212121; // to fix code syntax highlighting

// Fonts
//
$fonts: "Trebuchet MS", Verdana, "Verdana Ref", "Segoe UI", Candara,
  "Lucida Grande", "Lucida Sans Unicode", "Lucida Sans", Tahoma, sans-serif;
$code-fonts: Consolas, "Andale Mono WT", "Andale Mono", Menlo, Monaco,
  "Lucida Console", "Lucida Sans Typewriter", "DejaVu Sans Mono",
  "Bitstream Vera Sans Mono", "Liberation Mono", "Nimbus Mono L", "Courier New",
  Courier, "YaHei Consolas Hybrid", monospace, "Segoe UI Emoji", "PingFang SC",
  "Microsoft YaHei";

// Mixins
//
@mixin dimmed {
  opacity: 0.7;
}

@mixin aTag {
  a {
    word-break: break-all;
    border: none;
    box-shadow: inset 0 -1px 0 $theme;
    transition-property: background-color;

    &:hover {
      background-color: $dark-grey;
    }
  }
}