A container registry that uses the AT Protocol for manifest storage and S3 for blob storage. atcr.io
docker container atproto go
72
fork

Configure Feed

Select the types of activity you want to include in your feed.

at label-service 18 lines 508 B view raw
1/** @type {import('tailwindcss').Config} */ 2module.exports = { 3 content: [ 4 "./pkg/appview/templates/**/*.html", 5 "./pkg/appview/public/js/**/*.js", 6 "./pkg/hold/admin/templates/**/*.html", 7 ], 8 // Enable dark: variant based on 'dark' class (already toggled in head.html) 9 darkMode: 'class', 10 theme: { 11 extend: { 12 fontFamily: { 13 mono: ['Monaco', 'Menlo', 'Consolas', 'Liberation Mono', 'Courier New', 'monospace'], 14 }, 15 }, 16 }, 17 // DaisyUI is added via @plugin in CSS 18}