A social RSS reader built on the AT Protocol.
glean.at
glean
atproto
atmosphere
rss
feed
social
app
1/** @type {import('tailwindcss').Config} */
2module.exports = {
3 content: ["./internal/tmpl/**/*.html"],
4 theme: {
5 extend: {
6 colors: {
7 spot: {
8 green: '#00754A',
9 'green-dark': '#006241',
10 'green-house': '#1E3932',
11 'green-uplift': '#2b5148',
12 'green-light': '#d4e9e2',
13 bg: 'var(--spot-bg)',
14 surface: 'var(--spot-surface)',
15 hover: 'var(--spot-hover)',
16 'hover-50': 'var(--spot-hover-50)',
17 text: 'var(--spot-text)',
18 secondary: 'var(--spot-secondary)',
19 body: 'var(--spot-body)',
20 muted: 'var(--spot-muted)',
21 divider: 'var(--spot-divider)',
22 'divider-30': 'var(--spot-divider-30)',
23 outline: 'var(--spot-outline)',
24 placeholder: 'var(--spot-placeholder)',
25 'active-pill-bg': 'var(--spot-active-bg)',
26 'active-pill-text': 'var(--spot-active-text)',
27 red: '#c82014',
28 orange: '#ffa42b',
29 blue: '#539df5',
30 }
31 },
32 borderRadius: {
33 DEFAULT: 'var(--radius-sm)',
34 pill: 'var(--radius-pill)',
35 'pill-lg': 'var(--radius-pill)',
36 sm: 'var(--radius-sm)',
37 md: 'var(--radius-md)',
38 lg: 'var(--radius-md)',
39 xl: 'var(--radius-lg)',
40 full: 'var(--radius-full)',
41 },
42 boxShadow: {
43 'spot': 'var(--spot-shadow)',
44 'spot-heavy': 'var(--spot-shadow-heavy)',
45 'spot-elevated': 'var(--spot-shadow-elevated)',
46 },
47 letterSpacing: {
48 button: '1.4px',
49 },
50 },
51 },
52 plugins: [],
53}