WIP: My personal website
1{
2 "id": "site.standard.theme.basic",
3 "defs": {
4 "main": {
5 "key": "tid",
6 "type": "record",
7 "record": {
8 "type": "object",
9 "required": [
10 "background",
11 "foreground",
12 "accent",
13 "accentForeground"
14 ],
15 "properties": {
16 "accent": {
17 "refs": [
18 "site.standard.theme.color#rgb"
19 ],
20 "type": "union",
21 "description": "Color used for links and button backgrounds."
22 },
23 "background": {
24 "refs": [
25 "site.standard.theme.color#rgb"
26 ],
27 "type": "union",
28 "description": "Color used for content background."
29 },
30 "foreground": {
31 "refs": [
32 "site.standard.theme.color#rgb"
33 ],
34 "type": "union",
35 "description": "Color used for content text."
36 },
37 "accentForeground": {
38 "refs": [
39 "site.standard.theme.color#rgb"
40 ],
41 "type": "union",
42 "description": "Color used for button text."
43 }
44 }
45 },
46 "description": "A simplified theme definition for publications, providing basic color customization for content display across different platforms and applications."
47 }
48 },
49 "$type": "com.atproto.lexicon.schema",
50 "lexicon": 1
51}