summaryrefslogtreecommitdiff
path: root/themes/iroha
diff options
context:
space:
mode:
authorAndrew Opalach <andrew@akon.city> 2026-04-25 14:28:02 -0400
committerAndrew Opalach <andrew@akon.city> 2026-04-25 14:46:39 -0400
commit0848d6c89defb95966deeecd1c61352deccbeaec (patch)
tree21a2e74fcabb85c02fda8959badc08b0f7de0261 /themes/iroha
parentef40a5119a77280863c21ba67397818514714ccc (diff)
downloaddotfiles-0848d6c89defb95966deeecd1c61352deccbeaec.tar.gz
dotfiles-0848d6c89defb95966deeecd1c61352deccbeaec.tar.bz2
dotfiles-0848d6c89defb95966deeecd1c61352deccbeaec.zip
New CPU + Cleanup
Diffstat (limited to 'themes/iroha')
-rw-r--r--themes/iroha/colors.txt39
-rw-r--r--themes/iroha/konsole/iroha.colorscheme109
-rw-r--r--themes/iroha/konsole/iroha.profile8
-rw-r--r--themes/iroha/sway/theme10
-rw-r--r--themes/iroha/wallpaper/41555043_p0.pngbin0 -> 705049 bytes
-rw-r--r--themes/iroha/wallpaper/links.txt2
-rw-r--r--themes/iroha/wallpaper/wallpaper_vert.pngbin0 -> 791386 bytes
-rw-r--r--themes/iroha/wallpaper/wallpaper_vert.xcfbin0 -> 1333682 bytes
8 files changed, 167 insertions, 1 deletions
diff --git a/themes/iroha/colors.txt b/themes/iroha/colors.txt
new file mode 100644
index 0000000..a898266
--- /dev/null
+++ b/themes/iroha/colors.txt
@@ -0,0 +1,39 @@
+0, 0, 0
+215, 95, 0
+175, 95, 0
+255, 215, 95
+0, 95, 95
+255, 95, 135
+255, 175, 0
+238, 238, 238
+128, 128, 128 // 8
+215, 135, 0
+175, 135, 0
+255, 255, 95
+0, 135, 95
+255, 135, 135
+255, 215, 0
+255, 255, 255
+
+def vec4_to_hex(colors):
+ for c in colors:
+ print('#%08x' % (
+ (round(c[0] * 255) << 24) & 0xFF000000|
+ (round(c[1] * 255) << 16) & 0x00FF0000|
+ (round(c[2] * 255) << 8 ) & 0x0000FF00|
+ (round(c[3] * 255 ) & 0x000000FF)))
+
+def hex_to_vec4(colors):
+ for c in colors:
+ print('%d,%d,%d,%d' % (
+ (c >> 24 & 0xFF),
+ (c >> 16 & 0xFF),
+ (c >> 8 & 0xFF),
+ (c & 0xFF)))
+
+def hex_to_vec3(colors):
+ for c in colors:
+ print('%d,%d,%d' % (
+ (c >> 16 & 0xFF),
+ (c >> 8 & 0xFF),
+ (c & 0xFF)))
diff --git a/themes/iroha/konsole/iroha.colorscheme b/themes/iroha/konsole/iroha.colorscheme
new file mode 100644
index 0000000..61124b1
--- /dev/null
+++ b/themes/iroha/konsole/iroha.colorscheme
@@ -0,0 +1,109 @@
+[Background]
+Color=0,0,0
+
+[BackgroundFaint]
+Color=0,0,0
+
+[BackgroundIntense]
+Color=0,0,0
+
+[Color0]
+Color=0,0,0
+
+[Color0Faint]
+Color=0,0,0
+
+[Color0Intense]
+Color=128,128,128
+
+[Color1]
+Color=215,95,0
+
+[Color1Faint]
+Color=215,95,0
+
+[Color1Intense]
+Color=215,135,0
+
+[Color2]
+Color=175,95,0
+
+[Color2Faint]
+Color=175,95,0
+
+[Color2Intense]
+Color=175,135,0
+
+[Color3]
+Color=255,215,95
+
+[Color3Faint]
+Color=255,215,95
+
+[Color3Intense]
+Color=255,255,95
+
+[Color4]
+Color=0,95,95
+
+[Color4Faint]
+Color=0,95,95
+
+[Color4Intense]
+Color=0,135,95
+
+[Color5]
+Color=255,95,135
+
+[Color5Faint]
+Color=255,95,135
+
+[Color5Intense]
+Color=255,135,135
+
+[Color6]
+Color=255,175,0
+
+[Color6Faint]
+Color=255,175,0
+
+[Color6Intense]
+Color=255,215,0
+
+[Color7]
+Color=238,238,238
+
+[Color7Faint]
+Color=238,238,238
+
+[Color7Intense]
+Color=255,255,255
+
+[Color8]
+Color=128,128,128
+
+[Color8Faint]
+Color=128,128,128
+
+[Color8Intense]
+Color=128,128,128
+
+[Foreground]
+Color=238,238,238
+
+[ForegroundFaint]
+Color=238,238,238
+
+[ForegroundIntense]
+Color=255,255,255
+
+[General]
+Anchor=0.5,0.5
+Blur=false
+ColorRandomization=false
+Description=iroha
+FillStyle=Tile
+Opacity=1
+Wallpaper=
+WallpaperFlipType=NoFlip
+WallpaperOpacity=1
diff --git a/themes/iroha/konsole/iroha.profile b/themes/iroha/konsole/iroha.profile
new file mode 100644
index 0000000..eeb0814
--- /dev/null
+++ b/themes/iroha/konsole/iroha.profile
@@ -0,0 +1,8 @@
+[Appearance]
+BoldIntense=false
+ColorScheme=iroha
+Font=Liberation Mono,11,-1,5,400,0,0,0,0,0,0,0,0,0,0,1
+
+[General]
+Name=iroha
+Parent=FALLBACK/
diff --git a/themes/iroha/sway/theme b/themes/iroha/sway/theme
index 00edac1..6b9e661 100644
--- a/themes/iroha/sway/theme
+++ b/themes/iroha/sway/theme
@@ -9,12 +9,20 @@ set $urgent #d75f00
set $wallpaper1 "~/c/dotfiles/themes/iroha/wallpaper/wallpaper.png"
set $wallpaper2 "~/c/dotfiles/themes/iroha/wallpaper/wallpaper2.png"
+set $wallpaperV "~/c/dotfiles/themes/iroha/wallpaper/wallpaper_vert.png"
include ../monitors
output $monitor1 {
- bg $wallpaper1 fill
+#bg $wallpaper1 fill
+ bg $c1 solid_color
+}
+
+output $monitor2 {
+#bg $wallpaperV fill
+ bg $c1 solid_color
}
bindsym --no-repeat $mod4+F1 output $monitor1 bg $wallpaper1 fill
bindsym --no-repeat $mod4+F2 output $monitor1 bg $wallpaper2 fill
+bindsym --no-repeat $mod4+F3 output $monitor1 bg $c1 solid_color
diff --git a/themes/iroha/wallpaper/41555043_p0.png b/themes/iroha/wallpaper/41555043_p0.png
new file mode 100644
index 0000000..e920b3b
--- /dev/null
+++ b/themes/iroha/wallpaper/41555043_p0.png
Binary files differ
diff --git a/themes/iroha/wallpaper/links.txt b/themes/iroha/wallpaper/links.txt
index a244254..2075e06 100644
--- a/themes/iroha/wallpaper/links.txt
+++ b/themes/iroha/wallpaper/links.txt
@@ -3,3 +3,5 @@ https://web.archive.org/web/20160805050254/http://www.konami.jp/bemani/bm2dx/bm2
https://web.archive.org/web/20160805033011/http://www.konami.jp/bemani/bm2dx/bm2dx18/image/18tp_bn_mini_2.png
https://web.archive.org/web/20160805153756/http://www.konami.jp/bemani/bm2dx/bm2dx18/image/18tp_bn_mini_1.png
https://web.archive.org/web/20160805164320/http://www.konami.jp/bemani/bm2dx/bm2dx18/image/18tp_bn_mini_0.png
+https://www.pixiv.net/en/artworks/72357187
+https://www.pixiv.net/en/artworks/61635856
diff --git a/themes/iroha/wallpaper/wallpaper_vert.png b/themes/iroha/wallpaper/wallpaper_vert.png
new file mode 100644
index 0000000..df8b103
--- /dev/null
+++ b/themes/iroha/wallpaper/wallpaper_vert.png
Binary files differ
diff --git a/themes/iroha/wallpaper/wallpaper_vert.xcf b/themes/iroha/wallpaper/wallpaper_vert.xcf
new file mode 100644
index 0000000..1c43f74
--- /dev/null
+++ b/themes/iroha/wallpaper/wallpaper_vert.xcf
Binary files differ