Skip to content

Commit 56410c2

Browse files
committed
Add src/diagrams-theme.md
1 parent 8655648 commit 56410c2

File tree

4 files changed

+144
-0
lines changed

4 files changed

+144
-0
lines changed

diagrams-theme.html

Lines changed: 131 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,131 @@
1+
<!DOCTYPE html>
2+
<html lang=en>
3+
<head>
4+
<title>labwc</title>
5+
<meta charset="utf-8" />
6+
<meta name="description" content="labwc"/>
7+
<meta name="viewport" content="width=device-width">
8+
<style>
9+
body {
10+
overflow-y: scroll;
11+
font-family: sans-serif;
12+
max-width: 640px;
13+
padding: 20px;
14+
line-height: 1.5;
15+
word-wrap: break-word;
16+
margin: auto;
17+
text-align: justify;
18+
text-justify: inter-word;
19+
--color-bg: #0d1117;
20+
--color-hl: #333;
21+
--color-fg: #c9d1d9;
22+
--color-link: #ffbce3;
23+
--color-subtle: #555;
24+
color: var(--color-fg);
25+
background-color: var(--color-bg);
26+
}
27+
28+
pre {
29+
padding: 20px;
30+
white-space: pre-wrap;
31+
border: 1px dotted gray;
32+
display: block;
33+
margin: 20px auto;
34+
color: var(--color-fg);
35+
background-color: var(--color-bg);
36+
}
37+
38+
code {
39+
font-family: monospace;
40+
color: var(--color-fg);
41+
background-color: var(--color-bg);
42+
}
43+
44+
img {
45+
margin: 0px;
46+
margin-bottom: 20px;
47+
margin-top: 20px;
48+
max-width: 100%;
49+
}
50+
51+
table {
52+
border-collapse: collapse;
53+
}
54+
55+
table,th,td {
56+
border: 1px solid black;
57+
}
58+
59+
th,td {
60+
padding: 15px;
61+
text-align: left;
62+
}
63+
64+
h1 a, h2 a, h3 a, h4 a, h5 a {
65+
text-decoration: none;
66+
}
67+
68+
h1, h2, h3, h4, h5 {
69+
color: var(--color-fg);
70+
font-family: sans-serif;
71+
font-weight: bold;
72+
}
73+
74+
h1 {
75+
font-size: 130%;
76+
}
77+
78+
h2 {
79+
font-size: 110%;
80+
}
81+
82+
h3 {
83+
font-size: 95%;
84+
}
85+
86+
h4 {
87+
font-size: 90%;
88+
font-style: italic;
89+
}
90+
91+
h5 {
92+
font-size: 90%;
93+
font-style: italic;
94+
}
95+
96+
dt code {
97+
font-weight: bold;
98+
}
99+
100+
dd p {
101+
margin-top: 0;
102+
}
103+
104+
a, a:visited {
105+
color: var(--color-link);
106+
text-decoration: none;
107+
}
108+
109+
a:hover {
110+
text-decoration: underline;
111+
}
112+
113+
</style>
114+
</head>
115+
<body>
116+
<main>
117+
<center>
118+
<img src="img/labwc2-with-text.png" alt="labwc" height="61px" /><br />
119+
[<a href="index.html">home</a>]
120+
[<a href="https://github.com/labwc/labwc#readme">readme</a>]
121+
[<a href="integration.html">integration</a>]
122+
[<a href="getting-started.html">getting-started</a>]
123+
[<a href="manual.html">manual</a>]
124+
</center>
125+
<h1 id="diagrams-of-theme-variables">Diagrams of Theme Variables</h1>
126+
<!-- source: img/theme-window.svg -->
127+
<!-- also at "https://i.imgur.com/534SSaOl.png" -->
128+
<p><img src="img/theme-window.png" /></p>
129+
</main>
130+
</body>
131+
</html>

manual.html

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -123,11 +123,14 @@
123123
[<a href="manual.html">manual</a>]
124124
</center>
125125
<h1 id="documentation">Documentation</h1>
126+
<h2 id="man-pages">Man Pages</h2>
126127
<p><a href="labwc.1.html">labwc(1)</a><br />
127128
<a href="labwc-config.5.html">labwc-config(5)</a><br />
128129
<a href="labwc-theme.5.html">labwc-theme(5)</a><br />
129130
<a href="labwc-menu.5.html">labwc-menu(5)</a><br />
130131
<a href="labwc-actions.5.html">labwc-actions(5)</a></p>
132+
<h2 id="diagrams">Diagrams</h2>
133+
<p><a href="diagrams-theme.html">theme variables</a></p>
131134
</main>
132135
</body>
133136
</html>

src/diagrams-theme.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
# Diagrams of Theme Variables
2+
3+
<!-- source: img/theme-window.svg -->
4+
<!-- also at "https://i.imgur.com/534SSaOl.png" -->
5+
<img src="img/theme-window.png" />

src/manual.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,13 @@
11
# Documentation
22

3+
## Man Pages
4+
35
[labwc(1)](labwc.1.html)
46
[labwc-config(5)](labwc-config.5.html)
57
[labwc-theme(5)](labwc-theme.5.html)
68
[labwc-menu(5)](labwc-menu.5.html)
79
[labwc-actions(5)](labwc-actions.5.html)
810

11+
## Diagrams
12+
13+
[theme variables](diagrams-theme.html)

0 commit comments

Comments
 (0)