{"id":13473303,"url":"https://github.com/dracula/gh-pages","last_synced_at":"2025-08-01T08:42:38.078Z","repository":{"id":35086875,"uuid":"129538975","full_name":"dracula/gh-pages","owner":"dracula","description":"🧛🏻‍♂️ Dark theme for GitHub Pages","archived":false,"fork":false,"pushed_at":"2022-06-14T19:46:44.000Z","size":1172,"stargazers_count":89,"open_issues_count":0,"forks_count":35,"subscribers_count":10,"default_branch":"master","last_synced_at":"2025-04-24T00:34:40.144Z","etag":null,"topics":["dark-theme","dracula","ghpages"],"latest_commit_sha":null,"homepage":"https://draculatheme.com/github-pages","language":"JavaScript","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/dracula.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":"LICENSE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null}},"created_at":"2018-04-14T17:26:04.000Z","updated_at":"2024-11-27T13:59:11.000Z","dependencies_parsed_at":"2022-08-17T21:25:36.822Z","dependency_job_id":null,"html_url":"https://github.com/dracula/gh-pages","commit_stats":null,"previous_names":[],"tags_count":1,"template":false,"template_full_name":null,"purl":"pkg:github/dracula/gh-pages","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/dracula%2Fgh-pages","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/dracula%2Fgh-pages/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/dracula%2Fgh-pages/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/dracula%2Fgh-pages/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/dracula","download_url":"https://codeload.github.com/dracula/gh-pages/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/dracula%2Fgh-pages/sbom","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":268192592,"owners_count":24210541,"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","status":"online","status_checked_at":"2025-08-01T02:00:08.611Z","response_time":67,"last_error":null,"robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":true,"can_crawl_api":true,"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-theme","dracula","ghpages"],"created_at":"2024-07-31T16:01:02.505Z","updated_at":"2025-08-01T08:42:37.966Z","avatar_url":"https://github.com/dracula.png","language":"JavaScript","funding_links":[],"categories":["JavaScript"],"sub_categories":[],"readme":"# Dracula for [GitHub Pages](https://pages.github.com/)\n\n[![Build Status](https://travis-ci.org/dracula/gh-pages.svg?branch=master)](https://travis-ci.org/dracula/gh-pages)\n\n\u003e A dark theme for [GitHub Pages](https://pages.github.com/), full preview at [preview the theme to see what it looks like](http://dracula.github.io/gh-pages/).\n\n![Screenshot](./screenshot.png)\n\n## Install\n\nAll instructions can be found at [draculatheme.com/github-pages](https://draculatheme.com/github-pages).\n\n## Customizing\n\n#### Configuration variables\n\nDracula will respect the following variables, if set in your site's `_config.yml`:\n\n```yml\ntitle: [The title of your site]\ndescription: [A short description of your site's purpose]\n```\n\nAdditionally, you may choose to set the following optional variables:\n\n```yml\nshow_downloads: [\"true\" or \"false\" to indicate whether to provide a download URL]\ngoogle_analytics: [Your Google Analytics tracking ID]\nshow_header: [\"true\" or \"false\" to indicate whether to show the top header]\n```\n\nThere are also currently the following optional page variables:\n\n```yml\nicon: [path to file including extension]\ncolorspace: [primary page color cyan/green/orange/pink/purple/red/yellow]\n```\n\n#### Stylesheet\n\nIf you'd like to add your own custom styles:\n\n1. Create a file called `/assets/css/style.scss` in your site\n2. Add the following content to the top of the file, exactly as shown:\n\n   ```scss\n   ---\n   ---\n\n   @import \"{{ site.theme }}\";\n   ```\n\n3. Add any custom CSS (or Sass, including imports) you'd like immediately after the `@import` line\n\n_Note: If you'd like to change the theme's Sass variables, you must set new values before the `@import` line in your stylesheet._\n\n#### Layouts\n\nIf you'd like to change the theme's HTML layout:\n\n1. [Copy the original template](https://github.com/dracula/gh-pages/blob/master/_layouts/default.html) from the theme's repository\u003cbr /\u003e(_Pro-tip: click \"raw\" to make copying easier_)\n2. Create a file called `/_layouts/default.html` in your site\n3. Paste the default layout content copied in the first step\n4. Customize the layout as you'd like\n\n#### Overriding GitHub-generated URLs\n\nTemplates often rely on URLs supplied by GitHub such as links to your repository or links to download your project. If you'd like to override one or more default URLs:\n\n1. Look at [the template source](https://github.com/dracula/gh-pages/blob/master/_layouts/default.html) to determine the name of the variable. It will be in the form of `{{ site.github.zip_url }}`.\n2. Specify the URL that you'd like the template to use in your site's `_config.yml`. For example, if the variable was `site.github.url`, you'd add the following:\n   ```yml\n   github:\n     zip_url: http://example.com/download.zip\n     another_url: another value\n   ```\n3. When your site is built, Jekyll will use the URL you specified, rather than the default one provided by GitHub.\n\n_Note: You must remove the `site.` prefix, and each variable name (after the `github.`) should be indent with two space below `github:`._\n\nFor more information, see [the Jekyll variables documentation](https://jekyllrb.com/docs/variables/).\n\n#### Previewing the theme locally\n\nIf you'd like to preview the theme locally (for example, in the process of proposing a change):\n\n1. Clone down the theme's repository (`git clone https://github.com/dracula/gh-pages`)\n2. `cd` into the theme's directory\n3. Run `script/bootstrap` to install the necessary dependencies\n4. Run `bundle exec jekyll serve` to start the preview server\n5. Visit [`localhost:4000`](http://localhost:4000) in your browser to preview the theme\n\n#### Running tests\n\nThe theme contains a minimal test suite, to ensure a site with the theme would build successfully. To run the tests, simply run `script/cibuild`. You'll need to run `script/bootstrap` one before the test script will work.\n\n## Team\n\nThis theme is maintained by the following person(s) and a bunch of [awesome contributors](https://github.com/dracula/gh-pages/graphs/contributors).\n\n| [![backlands](https://avatars1.githubusercontent.com/u/12586299?v=3\u0026s=70)](https://github.com/backlands) |\n| -------------------------------------------------------------------------------------------------------- |\n| [backlands](https://github.com/backlands)                                                                |\n\n## Community\n\n- [Twitter](https://twitter.com/draculatheme) - Best for getting updates about themes and new stuff.\n- [GitHub](https://github.com/dracula/dracula-theme/discussions) - Best for asking questions and discussing issues.\n- [Discord](https://draculatheme.com/discord-invite) - Best for hanging out with the community.\n\n## License\n\n[MIT License](./LICENSE)\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fdracula%2Fgh-pages","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fdracula%2Fgh-pages","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fdracula%2Fgh-pages/lists"}