Compare commits

...

10 Commits

Author SHA1 Message Date
Lennart J. Kurzweg (Nx2)
6b8561234f fix header name 2024-11-23 18:13:10 +01:00
Lennart J. Kurzweg (Nx2)
525659559c Is Mine 2024-11-23 18:13:01 +01:00
iamdoubz
fdb711151a fruworg fix for github issue #7 2023-01-18 15:00:19 -06:00
iamdoubz
0223664292 Merge pull request 'iamdoubz-edit-code-patch-1' (#3) from iamdoubz-edit-code-patch-1 into main
Reviewed-on: https://git.dou.bet/iamdoubz/Gitea-Pitch-Black/pulls/3
2022-01-31 11:12:26 -06:00
iamdoubz
cbf41d0a81 Add .mtk1 color
Default color is `#000`. This hard overrides it to a font color more visible in dark and light background.
2022-01-31 11:10:57 -06:00
iamdoubz
df199097c8 Add .mtk1 color
Default color is `#000`. This hard overrides it to a font color more visible in dark and light background.
2022-01-31 11:08:02 -06:00
iamdoubz
753059dfa0 Update color of links in body
Fixes #1
2021-11-16 10:31:31 -06:00
iamdoubz
fe9a12849d Add less file
If user wants to create theme at compile time of gitea
2021-06-29 11:23:46 -05:00
iamdoubz
87780dc83d Fix text highlighting color 2021-06-29 11:20:41 -05:00
iamdoubz
67a191dc8c Update 'LICENSE' 2021-06-29 10:49:22 -05:00
3 changed files with 38 additions and 7 deletions

View File

@@ -1,6 +1,6 @@
MIT License
Copyright (c) <year> <copyright holders>
Copyright (c) 2021 iamdoubz
Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:

View File

@@ -1,7 +1,7 @@
# Gitea-Pitch-Black
Pitch black theme for Gitea v1.14 and higher
Pitch black theme for Gitea. Original by [iamdoubz](https://git.dou.bet/iamdoubz/Gitea-Pitch-Black) edited by Nx2.
[![pitchblack01.png](https://pix.dou.bet/images/2021/06/28/pitchblack01.png)](https://pix.dou.bet/image/gUOb)
[![pitchblack02.png](https://pix.dou.bet/images/2021/06/28/pitchblack02.png)](https://pix.dou.bet/image/gFN8)
[![pitchblack03.png](https://pix.dou.bet/images/2021/06/28/pitchblack03.png)](https://pix.dou.bet/image/gAoV)
[![pitchblack03.png](https://pix.dou.bet/images/2021/06/28/pitchblack03.png)](https://pix.dou.bet/image/gAoV)

View File

@@ -180,7 +180,7 @@
--color-input-background: #000;
--color-input-border: #454545;
--color-input-border-hover: #4e5465;
--color-navbar: #060606;
--color-nav-bg: #060606;
--color-light: #00000028;
--color-light-border: #ffffff28;
--color-hover: #ffffff10;
@@ -933,6 +933,37 @@ img[src$="/img/matrix.svg"] {
}
.CodeMirror, .CodeMirror-selected, ::selection {
background: var(--color-secondary)!important;
color: var(--color-primary)!important;
}
background: var(--color-primary)!important;
color: var(--color-secondary)!important;
}
.markup a, .ui.breadcrumb a {
color: var(--color-primary-light-7);
cursor: pointer;
text-decoration: none;
border-bottom: 1px solid var(--color-primary);
transition-property: all
}
.markup a:hover, .ui.breadcrumb a:hover {
color: #000;
cursor: pointer;
text-decoration: none;
background: #fff;
background-color: #fff
}
.markup .anchor {
border-bottom: none
}
.markup .anchor:hover {
color: var(--color-primary-light-7);
border-bottom: none;
background: var(--color-body);
background-color: var(--color-body)
}
.mtk1, .mtk10 {
color: #6D7178!important
}