{"id":16469752,"url":"https://github.com/vinitkumar/dark-paper","last_synced_at":"2025-07-05T02:03:27.807Z","repository":{"id":39779230,"uuid":"164633738","full_name":"vinitkumar/dark-paper","owner":"vinitkumar","description":"Dark Mode version of White Paper theme","archived":false,"fork":false,"pushed_at":"2024-12-18T11:03:26.000Z","size":3672,"stargazers_count":16,"open_issues_count":3,"forks_count":5,"subscribers_count":1,"default_branch":"master","last_synced_at":"2025-04-03T18:21:37.835Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":"http://vinitkumar.github.io/dark-paper","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/vinitkumar.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,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null}},"created_at":"2019-01-08T11:24:23.000Z","updated_at":"2025-03-29T21:28:51.000Z","dependencies_parsed_at":"2024-05-30T17:03:52.962Z","dependency_job_id":"3e474762-c1b5-4e4e-a702-0d34008049c5","html_url":"https://github.com/vinitkumar/dark-paper","commit_stats":null,"previous_names":[],"tags_count":1,"template":false,"template_full_name":null,"purl":"pkg:github/vinitkumar/dark-paper","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/vinitkumar%2Fdark-paper","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/vinitkumar%2Fdark-paper/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/vinitkumar%2Fdark-paper/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/vinitkumar%2Fdark-paper/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/vinitkumar","download_url":"https://codeload.github.com/vinitkumar/dark-paper/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/vinitkumar%2Fdark-paper/sbom","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":263645556,"owners_count":23494005,"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":[],"created_at":"2024-10-11T12:08:44.853Z","updated_at":"2025-07-05T02:03:27.786Z","avatar_url":"https://github.com/vinitkumar.png","language":"CSS","funding_links":[],"categories":[],"sub_categories":[],"readme":"# Dark Paper\n\n**Dark Paper** is a dark theme for Jekyll. It is a sister theme of [white-paper](https://github.com/vinitkumar/white-paper). If you like light colored themes, you can check white-paper.\n\nIt is built keeping content in focus and is best for writers/developers who also like to share code with their essays.\n\n## Create blog posts\n\n`jekyll-compose` gem is now installed with jekyll so now creating a new post is as easy as running this simple command\n\n```\n# ensure all the required bundles are installed\nbundle install\nbundle exec jekyll post \"Tooling Considered Harmful\"\n\nConfiguration file: /Users/vinitkumar/projects/vinitkumar.github.com/_config.yml\nNew post created at _posts/2019-03-06-tooling-considered-harmful.md\n\n$ git status\n\nUntracked files:\n  (use \"git add \u003cfile\u003e...\" to include in what will be committed)\n\n  _posts/2019-03-06-tooling-considered-harmful.md\n```\n\n# Dark Paper in Action\n\n- Home page\n\n![home](https://cldup.com/0OOg4BNi5t.png)\n\n- Profile page\n\n![profile](https://cldup.com/wkqPjKWknS-2000x2000.png)\n\n## How to use Dark Paper\n\nFork the repo to your account by clicking the button on the top right as shown in the image:\n\n![fork](https://cldup.com/vOF0oaUkh5-3000x3000.png) and then where you want to fork it as shown below.\n\nNext, Go the the project settings and change the repository name to `\u003cusername\u003e.github.io` where username is your username.\n\nChange these entries in the `_config.yml` file:\n\nAlso, change this line in head.html [link](https://github.com/vinitkumar/white-paper/blob/9ad021a8f94c6240351bd57eda301b5f207e554e/_includes/head.html#L28)\n\n```html\n\u003c!-- From this --\u003e\n\u003clink rel=\"stylesheet\" href=\" {{ '/css/main.min.css' | relative_url }}\" type=\"text/css\" /\u003e\n\u003c!-- To this --\u003e\n\u003clink rel=\"stylesheet\" href=\" {{ '/css/main.min.css' | absolute_url }}\" type=\"text/css\" /\u003e\n\n```\n\n\nThis will make sure that the path of CSS is correct and the theme loads correctly.\n\n```yml\nmaster_repo: false\nurl: \"\u003cusername\u003e.github.io\"\nrtl: false  # change to true if posts is in Arabic/other Right to left language.\n```\nAlso, change all other fields in the `_config.yml` file to your choice.\n\n## Installation\n\n### Local Development\n\nThis theme requires you to install couple of tools first to setup jekyll locally.\n\n```$\ngit clone git@github.com:vinitkumar/white-paper.git\n\n# If you have ruby installed.\ngem install jekyll bundler\n\n# If you have node installed.\nnpm install\nsudo npm install -g grunt-cli  #to get the task runner for grunt.\nbundle install\njekyll serve\n\n# on running the serve script, the site will be live on\nhttp://127.0.0.1:4000\n```\nThis theme uses grunt to concat \u0026 minify the css for best performance. In order to prepare the css build. Run `grunt`\nIt will create a main.min.css file in the css folder.\n\n### Switch Syntax Highlighting.\n\nThis theme also provides syntax highlighting in different theme. Inside css folder, there is a syntax folder.\n\n```$\n.\n├── emacs.css\n├── github.css\n├── monokai.css\n├── native.css\n├── syntax.css\n└── vim.css\n\n```\n\nNow in the gruntfiles.js\n\n```js\nconcat: {\n  dist: {\n    src: [\n      'css/base.css',\n      'css/sytax/emacs.css', // change this to another theme if you prefer, like vim.css and run grunt\n      'css/octicons.css'\n    ],\n    dest: 'css/\u003c%= pkg.name %\u003e.add.css'\n  }\n}\n```\n\n## License\n* see [LICENSE](https://github.com/vinitkumar/white-paper/blob/gh-pages/LICENSE) file\n\n## Version\n* Version 1.0.0\n\n## Contact\n#### Developer\n\n* Homepage: http://vinitkumar.me\n* e-mail: vinit1414.08@bitmesra.ac.in\n* Twitter: [@vinitkme](https://twitter.com/vinitkme \"vinitkme on twitter\")\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fvinitkumar%2Fdark-paper","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fvinitkumar%2Fdark-paper","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fvinitkumar%2Fdark-paper/lists"}