Last active
April 2, 2026 06:20
-
-
Save capyBearista/29c37550b2c783e3ced410bd0148df0f to your computer and use it in GitHub Desktop.
Custom config for the tablissng extension
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| /* Import JetBrains Mono, Space Grotesk, Outfit, and Zilla Slab */ | |
| @import url('https://fonts.googleapis.com/css2?family=JetBrains+Mono:wght@400;500;700&family=Outfit:wght@400;500;700&family=Space+Grotesk:wght@400;500;700&family=Zilla+Slab:ital,wght@0,400;0,500;0,700;1,400&display=swap'); | |
| /* Import custom GitButler font */ | |
| @font-face { | |
| font-family: 'But-Head'; | |
| src: url('https://gitbutler.com/_app/immutable/assets/But-Head-Regular.bFy4jtSr.woff2') format('woff2'); | |
| font-weight: normal; | |
| font-style: normal; | |
| } | |
| /* Set the global default font for the entire new tab page */ | |
| body { | |
| font-family: 'Space Grotesk'; | |
| } | |
| .GitHub { | |
| display: inline-flex; | |
| justify-content: center; | |
| background-color: rgba(25, 25, 25, 0.40); | |
| padding: 12px 12px; | |
| border-radius: 10px; | |
| backdrop-filter: blur(5px); | |
| -webkit-backdrop-filter: blur(5px); | |
| box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3); | |
| } | |
| /* Rounded calendar squares */ | |
| .GitHub rect { | |
| rx: 4px !important; | |
| ry: 4px !important; | |
| } | |
| .Time { | |
| color: #ffffff; | |
| text-shadow: 0 0 2px rgba(255,255,255,0.5), 0 0 15px rgba(255,255,255,0.3); | |
| } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment