From 27ae8fc2b26348f68b7e7bdd66c6519a2225bcba Mon Sep 17 00:00:00 2001 From: yannickreiss Date: Fri, 1 Mar 2024 19:49:17 +0100 Subject: [PATCH] init --- config | 15 +++++++++ style.css | 1 + style/style-dark.css | 75 ++++++++++++++++++++++++++++++++++++++++++++ style/style.css | 75 ++++++++++++++++++++++++++++++++++++++++++++ 4 files changed, 166 insertions(+) create mode 100644 config create mode 120000 style.css create mode 100644 style/style-dark.css create mode 100644 style/style.css diff --git a/config b/config new file mode 100644 index 0000000..adf78c7 --- /dev/null +++ b/config @@ -0,0 +1,15 @@ +width=600 +height=350 +location=center +show=drun +prompt=Search... +filter_rate=100 +allow_markup=true +no_actions=true +halign=fill +orientation=vertical +content_halign=fill +insensitive=true +allow_images=true +image_size=40 +gtk_dark=true diff --git a/style.css b/style.css new file mode 120000 index 0000000..81ab9de --- /dev/null +++ b/style.css @@ -0,0 +1 @@ +/home/nick/.config/wofi/style/style-dark.css \ No newline at end of file diff --git a/style/style-dark.css b/style/style-dark.css new file mode 100644 index 0000000..56be9d9 --- /dev/null +++ b/style/style-dark.css @@ -0,0 +1,75 @@ +window { + margin: 0px; + border: 5px solid #1e1e2e; + background-color: #cdd6f4; + border-radius: 15px; +} + +#input { + padding: 4px; + margin: 4px; + padding-left: 20px; + border: none; + color: #cdd6f4; + font-weight: bold; + background-color: #1e1e2e; + outline: none; + border-radius: 15px; + margin: 10px; + margin-bottom: 2px; +} +#input:focus { + border: 0px solid #1e1e2e; + margin-bottom: 0px; +} + +#inner-box { + margin: 4px; + border: 10px solid #1e1e2e; + color: #cdd6f4; + font-weight: bold; + background-color: #1e1e2e; + border-radius: 15px; +} + +#outer-box { + margin: 0px; + border: none; + border-radius: 15px; + background-color: #1e1e2e; +} + +#scroll { + margin-top: 5px; + border: none; + border-radius: 15px; + margin-bottom: 5px; + /* background: rgb(255,255,255); */ +} + +#img:selected { + background-color: #89b4fa; + border-radius: 15px; +} + +#text:selected { + color: #cdd6f4; + margin: 0px 0px; + border: none; + border-radius: 15px; + background-color: #89b4fa; +} + +#entry { + margin: 0px 0px; + border: none; + border-radius: 15px; + background-color: transparent; +} + +#entry:selected { + margin: 0px 0px; + border: none; + border-radius: 15px; + background-color: #89b4fa; +} diff --git a/style/style.css b/style/style.css new file mode 100644 index 0000000..951bf97 --- /dev/null +++ b/style/style.css @@ -0,0 +1,75 @@ +window { + margin: 0px; + border: 5px solid #1e1e2e; + background-color: #cdd6f4; + border-radius: 15px; +} + +#input { + padding: 4px; + margin: 4px; + padding-left: 20px; + border: none; + color: #1e1e2e; + font-weight: bold; + background-color: #e7e7ec; + outline: none; + border-radius: 15px; + margin: 10px; + margin-bottom: 2px; +} +#input:focus { + border: 0px solid #1e1e2e; + margin-bottom: 0px; +} + +#inner-box { + margin: 4px; + border: 10px solid #e7e7ec; + color: #1e1e2e; + font-weight: bold; + background-color: #e7e7ec; + border-radius: 15px; +} + +#outer-box { + margin: 0px; + border: none; + border-radius: 15px; + background-color: #e7e7ec; +} + +#scroll { + margin-top: 5px; + border: none; + border-radius: 15px; + margin-bottom: 5px; + /* background: rgb(255,255,255); */ +} + +#img:selected { + background-color: #89b4fa; + border-radius: 15px; +} + +#text:selected { + color: #1e1e2e; + margin: 0px 0px; + border: none; + border-radius: 15px; + background-color: #89b4fa; +} + +#entry { + margin: 0px 0px; + border: none; + border-radius: 15px; + background-color: transparent; +} + +#entry:selected { + margin: 0px 0px; + border: none; + border-radius: 15px; + background-color: #89b4fa; +}