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