{"id":13450885,"url":"https://github.com/Jieiku/theme-dark-arc-gitea","last_synced_at":"2025-03-23T16:32:32.493Z","repository":{"id":37723267,"uuid":"481442217","full_name":"Jieiku/theme-dark-arc-gitea","owner":"Jieiku","description":"Dark theme with high contrast for Gitea, based on arc-green.","archived":false,"fork":false,"pushed_at":"2024-06-27T19:29:13.000Z","size":280,"stargazers_count":29,"open_issues_count":0,"forks_count":4,"subscribers_count":4,"default_branch":"main","last_synced_at":"2025-03-09T20:27:41.295Z","etag":null,"topics":["dark","gitea","gitea-dark-theme","gitea-theme","theme","themes"],"latest_commit_sha":null,"homepage":"","language":"CSS","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"mit","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/Jieiku.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":".github/FUNDING.yml","license":"LICENSE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null},"funding":{"github":["Jieiku"]}},"created_at":"2022-04-14T02:38:39.000Z","updated_at":"2025-01-01T18:12:57.000Z","dependencies_parsed_at":"2024-06-17T22:41:22.219Z","dependency_job_id":"0ae011dd-715c-4966-b928-965ac8be5b76","html_url":"https://github.com/Jieiku/theme-dark-arc-gitea","commit_stats":null,"previous_names":[],"tags_count":0,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Jieiku%2Ftheme-dark-arc-gitea","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Jieiku%2Ftheme-dark-arc-gitea/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Jieiku%2Ftheme-dark-arc-gitea/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Jieiku%2Ftheme-dark-arc-gitea/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/Jieiku","download_url":"https://codeload.github.com/Jieiku/theme-dark-arc-gitea/tar.gz/refs/heads/main","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":245131092,"owners_count":20565767,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["dark","gitea","gitea-dark-theme","gitea-theme","theme","themes"],"created_at":"2024-07-31T07:00:39.795Z","updated_at":"2025-03-23T16:32:32.119Z","avatar_url":"https://github.com/Jieiku.png","language":"CSS","funding_links":["https://github.com/sponsors/Jieiku"],"categories":["Themes","Active projects"],"sub_categories":["Dark","Themes"],"readme":"# Dark Arc\nA dark theme for gitea with high contrast.\n\nThis theme was originally created by making a copy of `theme-arc-green.css` and making things darker for better contrast. Since then it has been rebased onto the gitea-dark theme for Gitea 1.22 compatibility.\n\nIf you make improvements/tweaks to this theme please send a pull request, or dump your changes in an issue report.\n\n![dark-arc-dashboard](screenshot.png)\n\n![dark-arc-repository](screenshot2.png)\n\n# Compatibility\n\nThis theme has been tested to work without issues on Gitea 1.22 and Forgejo 7.0.\n\n## Before install, first you need to identify 3 things:\n\n- Location of $GITEA_CUSTOM\n- Location of app.ini ([Example app.ini](https://raw.githubusercontent.com/go-gitea/gitea/main/custom/conf/app.example.ini))\n- User the gitea service runs as\n\nHere is a screenshot of my environment and where to find this info:\n\n![gitea-config](install.png)\n\n## Create a public/assets/css directory under your gitea/custom path and download the theme.\n\nCreate `/public/assets/css` below your $GITEA_CUSTOM path, MY custom path is `/var/lib/gitea/custom`, as seen in the [install screenshot](install.png).\n\n    sudo mkdir -p /var/lib/gitea/custom/public/assets/css\n    cd /var/lib/gitea/custom/public/assets/css\n    curl -o theme-dark-arc.css https://raw.githubusercontent.com/Jieiku/theme-dark-arc-gitea/main/theme-dark-arc.min.css\n\n## Make sure ownership is correct:\n\nSet ownership of your $GITEA_CUSTOM directory and files, I set ownership to git because gitea runs as user git, as seen in the [install screenshot](install.png).\n\n    sudo chown -R git:git /var/lib/gitea/custom\n\n## Edit the app.ini config file to include dark-arc theme:\n\nThe app.ini file location may differ depending on environment, this matches the location of my file, as seen in the [install screenshot](install.png).\n\n`sudo nano /var/lib/gitea/custom/conf/app.ini`\n\n    [ui]\n    DEFAULT_THEME = dark-arc\n    THEMES = gitea,dark-arc\n\n## Restart gitea service\n\n    sudo systemctl restart gitea\n\n    *or*\n\n    sudo reboot\n\nThe theme may automatically be active now, but if not click your avatar in top right, click settings, click appearance tab, select the theme and click update theme button.\n\n\n## Notes\n\n### assets:\n\nAs of [1.21.0](https://blog.gitea.com/release-of-1.21.0/#%EF%B8%8F-move-public-asset-files-to-the-proper-directory-25907) `/assets` now points to `custom/public/assets/*` instead of `custom/public/*`\n\nSo for me my directory structure is:\n\n`/var/lib/gitea/custom/public/assets/css/theme-dark-arc.css`\n\n### You can set `config` and `custom-path` values when running gitea as a service:\n\n```shell\nsudo nano /etc/systemd/system/gitea.service\n\nExecStart=/usr/local/bin/gitea web --custom-path /var/lib/gitea/custom --config /var/lib/gitea/custom/conf/app.ini\n```\n\n### Organizations:\n\nI created a feature request for a way to disable organizations because I don't use them.\n\nI was promptly told to use css and my request was closed: https://github.com/go-gitea/gitea/issues/19391\n\nThis theme can hide organizations related blocks/links using CSS, you can uncomment it at the bottom of the theme:\n\n```css\n#dashboard-repo-list \u003e div \u003e div:first-child {display: none !important}\na[href*=\"organizations\"] {display: none !important}\n.dashboard \u003e .secondary-nav {display: none !important}\n.milestones \u003e .secondary-nav {display: none !important}\n.issues \u003e .secondary-nav {display: none !important}\n```\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2FJieiku%2Ftheme-dark-arc-gitea","html_url":"https://awesome.ecosyste.ms/projects/github.com%2FJieiku%2Ftheme-dark-arc-gitea","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2FJieiku%2Ftheme-dark-arc-gitea/lists"}