forked from
rocksky.app/rocksky
A decentralized music tracking and discovery platform built on AT Protocol 馃幍
1@tailwind base;
2@tailwind components;
3@tailwind utilities;
4
5@plugin "flyonui";
6@plugin "@iconify/tailwind4";
7
8@import "../node_modules/flyonui/variants.css";
9@source "../node_modules/flyonui/dist/index.js";
10
11@font-face {
12 font-family: "RockfordSansLight";
13 src: url("/public/fonts/RockfordSans-Light.otf") format("opentype");
14 font-weight: 300;
15 font-style: normal;
16}
17
18@font-face {
19 font-family: "RockfordSansRegular";
20 src: url("/public/fonts/RockfordSans-Regular.otf") format("opentype");
21 font-weight: 400;
22 font-style: normal;
23}
24
25@font-face {
26 font-family: "RockfordSansRegularItalic";
27 src: url("/public/fonts/RockfordSans-RegularItalic.otf") format("opentype");
28 font-weight: 400;
29 font-style: italic;
30}
31
32@font-face {
33 font-family: "RockfordSansMedium";
34 src: url("/public/fonts/RockfordSans-Medium.otf") format("opentype");
35 font-weight: 500;
36 font-style: normal;
37}
38
39@font-face {
40 font-family: "RockfordSansBold";
41 src: url("/public/fonts/RockfordSans-Bold.otf") format("opentype");
42 font-weight: 700;
43 font-style: normal;
44}
45
46@font-face {
47 font-family: "RockfordSansBoldItalic";
48 src: url("/public/fonts/RockfordSans-BoldItalic.otf") format("opentype");
49 font-weight: 700;
50 font-style: italic;
51}
52
53@font-face {
54 font-family: "RockfordSansExtraBold";
55 src: url("/public/fonts/RockfordSans-ExtraBold.otf") format("opentype");
56 font-weight: 800;
57 font-style: normal;
58}
59
60@font-face {
61 font-family: "RockfordSansRegular";
62 src: url("/public/fonts/RockfordSans-Regular.otf") format("opentype");
63 font-weight: 400;
64 font-style: normal;
65}
66
67@font-face {
68 font-family: "RockfordSansBold";
69 src: url("/public/fonts/RockfordSans-Bold.otf") format("opentype");
70 font-weight: 700;
71 font-style: normal;
72}
73
74@theme {
75 --font-rockford-light: "RockfordSansLight";
76 --color-text-muted: #42576ca6;
77 --color-genre: #3f03fb;
78 --color-avatar-background: #f4f0ff;
79}
80
81.dark {
82 --color-text-muted: rgb(191 174 195 / 65%) !important;
83 --color-genre: #3f03fb;
84}
85
86body {
87 font-family: "RockfordSansRegular";
88}