redirecter for ao3 that adds opengraph metadata
1const themes = { 2 ao3: { 3 name: 'AO3', 4 background: '#990000', 5 color: '#FFFFFF', 6 descBackground: '#FFFFFF', 7 descColor: '#000000', 8 accent: '#FFFFFF', 9 accent2: '#990000', 10 accent3: '#009900', 11 accent4: '#000099' 12 }, 13 softEra: { 14 name: 'Soft Era', 15 background: '#F9F5F5', 16 color: '#C8B3B3', 17 descBackground: '#F9F5F5', 18 descColor: '#414141', 19 accent: '#DB90A7', 20 accent2: '#EEAABE', 21 accent3: '#82B4E3', 22 accent4: '#a29acb' 23 }, 24 wildCherry: { 25 name: 'Wild Cherry', 26 background: '#2B1F32', 27 color: '#FFFFFF', 28 descBackground: '#FFFFFF', 29 descColor: '#2B1F32', 30 accent: '#E15D97', 31 accent2: '#0AACC5', 32 accent3: '#FFB86C', 33 accent4: '#35BA66' 34 }, 35 rosePine: { 36 name: 'Rosé Pine', 37 background: '#191724', 38 color: '#e0def4', 39 descBackground: '#1f1d2e', 40 descColor: '#e0def4', 41 accent: '#eb6f92', 42 accent2: '#31748f', 43 accent3: '#f6c177', 44 accent4: '#c4a7e7' 45 }, 46 rosePineDawn: { 47 name: 'Rosé Pine Dawn', 48 background: '#faf4ed', 49 color: '#575279', 50 descBackground: '#fffaf3', 51 descColor: '#575279', 52 accent: '#eb6f92', 53 accent2: '#286983', 54 accent3: '#ea9d34', 55 accent4: '#907aa9' 56 }, 57 rosePineMoon: { 58 name: 'Rosé Pine Moon', 59 background: '#232136', 60 color: '#e0def4', 61 descBackground: '#2a273f', 62 descColor: '#e0def4', 63 accent: '#b4637a', 64 accent2: '#3e8fb0', 65 accent3: '#f6c177', 66 accent4: '#c4a7e7' 67 }, 68 solarizedLight: { 69 name: 'Solarized Light', 70 background: '#fdf6e3', 71 color: '#b58900', 72 descBackground: '#eee8d5', 73 descColor: '#002b36', 74 accent: '#d33682', 75 accent2: '#2aa198', 76 accent3: '#859900', 77 accent4: '#6c71c4' 78 }, 79 solarizedDark: { 80 name: 'Solarized Dark', 81 background: '#002b36', 82 color: '#b58900', 83 descBackground: '#073642', 84 descColor: '#fdf6e3', 85 accent: '#d33682', 86 accent2: '#2aa198', 87 accent3: '#859900', 88 accent4: '#6c71c4' 89 }, 90 squidgeworld: { 91 name: 'Squidgeworld', 92 background: '#b8860b', 93 color: '#f5f5dc', 94 descBackground: '#f5f5dc', 95 descColor: '#2a2a2a', 96 accent: '#fece3f', 97 accent2: '#818D4C', 98 accent3: '#6D7A34', 99 accent4: '#556121' 100 }, 101 superlove: { 102 name: 'Superlove', 103 background: '#df6191', 104 color: '#ffffff', 105 descBackground: '#FFFFFF', 106 descColor: '#2a2a2a', 107 accent: '#F9E4E6', 108 accent2: '#a33961', 109 accent3: '#87254A', 110 accent4: '#6A1133' 111 }, 112 catppuccinMocha: { 113 name: 'Catppuccin Mocha', 114 background: '#1e1e2e', 115 color: '#cdd6f4', 116 descBackground: '#313244', 117 descColor: '#bac2de', 118 accent: '#f5e0dc', 119 accent2: '#cba6f7', 120 accent3: '#fab387', 121 accent4: '#89dceb' 122 }, 123 catppuccinLatte: { 124 name: 'Catppuccin Latte', 125 background: '#eff1f5', 126 color: '#4c4f69', 127 descBackground: '#ccd0da', 128 descColor: '#5c5f77', 129 accent: '#dc8a78', 130 accentColor: '#FFFFFF', 131 accent2: '#8839ef', 132 accent3: '#fe640b', 133 accent4: '#04a5e5' 134 } 135} 136 137export default themes