summaryrefslogtreecommitdiff
path: root/web/assets/themes/programmer-socks-light.css
blob: 581c9cab19cff0b7c3e6ca3f29fdffb048606dcc (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
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
/*
  theme-title: Programmer socks light
  theme-description: Light gray and pink theme
*/

/* Use light code highlights. */
@import url("../dist/_prism-light.css");

:root {
  /* Define our cool hacker color palette, I'm in. */
  --dark-gray: #1b1b1b;
  --medium-gray: #282828;
  --light-gray: #e4d7e3;
  --whiteish: #f8f8f8;
  --terminal-darker: #ac30ac;
  --terminal: #c43abd;
  --terminal-lighter: #eb48e2;

  /* Overwrite orange trim */
  --orange2: var(--terminal);

  /* Restyle basic colors to use terminal */
  --blue1: var(--terminal);
  --blue2: var(--terminal);
  --blue3: var(--terminal-darker);

  /* Basic page styling (background + foreground) */
  --bg: var(--whiteish);
  --bg-accent: var(--light-gray);
  --fg: var(--dark-gray);
  --fg-reduced: var(--medium-gray);

  /* Profile page styling */
  --profile-bg: var(--whiteish);

  /* Hackerize buttons */
  --button-bg: var(--terminal-lighter);
  --button-fg: var(--dark-gray);

  /* Hackerize statuses */
  --status-bg: var(--whiteish);
  --status-focus-bg: var(--whiteish);
  --status-info-bg: var(--light-gray);
  --status-focus-info-bg: var(--light-gray);

  /* Used around statuses + other items */
  --boxshadow-border: 0.15rem solid var(--terminal-darker);

  /* Straighten borders */
  --br: 0;
  --br-inner: 0;
}

/* Scroll bar + main font */
html, body {
  font-family: 'Noto Sans Mono', monospace;
  scrollbar-color: var(--terminal-lighter) var(--medium-gray);
}

/* Buttons font */
button, .button,
.status .text-spoiler > summary .button {
  font-family: 'Noto Sans Mono', monospace;
}

/* Column headers */
.col-header {
  border: var(--boxshadow-border);
}
.profile .about-user .col-header {
  border-bottom: none;
  margin-bottom: 0;
}

.profile .profile-header {
  border: var(--boxshadow-border);
}

/* Fiddle around with borders on about sections */
.profile .about-user .fields,
.profile .about-user .bio,
.profile .about-user .accountstats {
  border-left: var(--boxshadow-border);
  border-right: var(--boxshadow-border);
}
.profile .about-user .accountstats {
  border-bottom: var(--boxshadow-border);
}

.profile .about-user .fields {
  padding-top: 0;
}

/* Profile fields */
.profile .about-user .fields .field {
  border-bottom: var(--boxshadow-border);
}
.profile .about-user .fields .field:first-child {
  border-top: var(--boxshadow-border);
}

/* Profile fields */
.profile .about-user .fields .field {
  border-bottom: var(--boxshadow-border);
}
.profile .about-user .fields .field:first-child {
  border-top: var(--boxshadow-border);
}

/* Status media */
.status .media .media-wrapper {
  border: var(--boxshadow-border);
  background: var(--light-gray);
}
.status .media .media-wrapper details .unknown-attachment .placeholder {
  color: var(--dark-gray);
}

/* Status polls */
.status .text .poll {
  background-color: var(--light-gray);
  border: var(--boxshadow-border);
}
.status .text .poll .poll-info {
  background-color: var(--whiteish);
}

/* Code snippets */
pre, pre[class*="language-"],
code, code[class*="language-"] {
  background: var(--whiteish);
  color: var(--dark-gray);
}

/* Block quotes */
blockquote {
  background-color: var(--light-gray);
  color: var(--dark-gray);
}