File size: 1,122 Bytes
f7eafe5
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600&family=Space+Grotesk:wght@300;400;500;600;700&family=JetBrains+Mono:wght@400;500&display=swap');
@import 'tailwindcss';

@source "../index.html";
@source "./**/*.{js,ts,jsx,tsx}";

@theme {
  --font-sans: 'Inter', ui-sans-serif, system-ui, sans-serif;
  --font-display: 'Space Grotesk', sans-serif;
  --font-mono: 'JetBrains Mono', ui-monospace, SFMono-Regular, monospace;

  --color-brand-tan: #d6c4b0;
  --color-brand-tan-muted: #8c7e6e;
  --color-brand-matte: #0a0a0a;
  --color-brand-border: rgba(214, 196, 176, 0.15);
}

@utility hairline-border {
  @apply border border-brand-border;
}

@utility hairline-border-b {
  @apply border-b border-brand-border;
}

@utility hairline-border-r {
  @apply border-r border-brand-border;
}

@utility glass-panel {
  @apply bg-white/2 backdrop-blur-sm hairline-border;
}

@layer base {
  body {
    @apply bg-brand-matte text-brand-tan/80 font-sans antialiased selection:bg-brand-tan/30 selection:text-white;
  }

  h1, h2, h3, h4, h5, h6 {
    @apply font-display tracking-tight text-brand-tan;
  }
}