You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

40 lines
1.2 KiB

4 years ago
  1. +++
  2. title = "Custom Styles"
  3. description = "Mengubah gaya tema untuk design kontrol yang lengkap."
  4. categories = ["customizing"]
  5. tags = ["color", "style", "branding"]
  6. feature = ["code highlighter", "snippets"]
  7. [[copyright]]
  8. owner = "Josh Habdas"
  9. date = "2019"
  10. license = "agpl-3.0-or-later"
  11. +++
  12. After Dark menggunakan {{< external href="https://gohugo.io/hugo-pipes/" text="Hugo Pipes" />}} untuk mengaktifkan kostomisasi gaya tema menggunakan CSS. Jika tidak diubah gaya khusus berikut disediakan secara standart:
  13. {{< highlight css "linenos=inline" >}}
  14. {{< include "themes/after-dark/assets/css/custom.css" >}}
  15. {{< /highlight >}}
  16. Sesuaikan dari `custom.css` di situs `assets/css` direktori:
  17. ```
  18. ├── archetypes
  19. ├── assets
  20. │   └── css
  21. │   └── custom.css
  22. ├── content
  23. ```
  24. Jika file belum ada, salinlah dari tema standart:
  25. ```sh
  26. $ mkdir -p assets/css
  27. $ cp themes/after-dark/assets/css/custom.css assets/css
  28. ```
  29. Kemudian buka file dan mulailah mengedit, atau menghapusnya untuk mengembalikan ke bentuk standart.
  30. {{< hackcss-alert type="info" >}}
  31. <strong>Tip:</strong> Pilih dari ribuan palet warna yang telah ditetapkan {{< external "https://coolors.co/" />}}.
  32. {{< /hackcss-alert >}}