123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597 |
- # this is the default theme for tinmop, feel free to customize it
- # according to your taste , and do not forget to share! :)
- # Note:
- # valid color are specified using RGB triplets as #RRGGBB or color names
- # valid color names are:
- # - red
- # - green
- # - yellow
- # - blue
- # - magenta
- # - cyan
- # - white
- #
- # valid attributes are:
- # - bold
- # - italic
- # - underline
- # - blink
- # The text that starts the title section of a window
- window.title.left.stopper.value = "╼▌"
- # The text that end the title section of a window
- window.title.right.stopper.value = "▐╾"
- # default background color of terminal
- main-window.background = black
- # default foreground color (text) of terminal
- main-window.foreground = white
- # shown when a message was trasmitted in crypted form
- crypted.mark.value = " 🔏👌"
- # the string to be drawn instead of actual character when input password
- password-echo-character = "•"
- # the character used to draw the vote's horizontal histogram
- # note: keeps it one character wide
- vote-vertical-bar = "⯀"
- # the symbol to represent a directory (used when a local tree is explored)
- directory-symbol = "🗀"
- # quick help window style
- quick-help.header.foreground = white
- quick-help.header.background = red
- quick-help.header.attribute = bold
- # help dialog style
- help-dialog.background = white
- help-dialog.foreground = red
- # info dialog style
- info-dialog.background = blue
- info-dialog.foreground = yellow
- # error dialog style
- error-dialog.background = red
- error-dialog.foreground = yellow
- # input dialog style
- input-dialog.background = blue
- input-dialog.foreground = white
- # this color specifies the style for form of the dialog
- input-dialog.input.foreground = black
- input-dialog.input.background = #aaaaaa
- # this color specify the style for active form of the dialog
- input-dialog.input.selected.foreground = black
- input-dialog.input.selected.background = white
- # the notify window shows useful information to the user
- notify-window.background = #0219A2
- notify-window.foreground = #55D67C
- notify-window.life = 2
- notify-window.width = 1/6
- # centered notification window
- # notify-window.position.x = 7/16
- # notify-window.position.y = 1/2
- # top right corner notification window
- # notify-window.position.x = -1/6
- # notify-window.position.y = 0
- # top left corner notification window
- # notify-window.position.x = 0
- # notify-window.position.y = 0
- # bottom left corner notification window
- notify-window.position.x = 0
- notify-window.position.y = -0.13
- # a window shows this text in the top left corner to indicate that it
- # has focus
- window.focus.mark.value = "📌"
- window.focus.mark.foreground = white
- window.focus.mark.background = black
- # this specify style for the thread window
- thread-window.background = black
- thread-window.foreground = blue
- # the modeline window is a small section on the very bottom of the
- # thread window that shows some information about the threads see
- # below.
- thread-window.modeline.background = blue
- thread-window.modeline.foreground = yellow
- # shown as a prefix for mentions in the modeline
- thread-window.modeline.notification-icon.value = "📣"
- # this variable customize the information that the modeline will
- # shows, values prefixed with a '%' will be expanded, allowe values to
- # be expanded are:
- # - %m mentions count
- # - %u user account
- # - %s server connected to
- # - %k current timeline
- # - %f current folder
- # - %r number of read messages in this timeline/folder
- # - %r number of total messages in this timeline/folder
- # - %tags in selected messages (if any)
- # - %% a percent sign
- thread-window.modeline.value = "%m %u@%s ◈ %k %r/%t ◈ folder: %f ◈ tags: %h"
- # this is the only width you have to specify as the others windows
- # just fills the void left by this one
- thread-window.width = 5/6
- thread-window.height = 1/4
- # colors for selected messages in thread window
- thread-window.message.selected.background = cyan
- thread-window.message.selected.foreground = black
- #thread-window.message.selected.attribute = bold
- # colors for messages marked for deletion in thread window
- thread-window.message.deleted.background = red
- thread-window.message.deleted.foreground = white
- thread-window.message.deleted.attribute = bold
- # colors for already read messages in thread window
- thread-window.message.read.background = black
- thread-window.message.read.foreground = #aaaaaa
- thread-window.message.read.attribute = italic
- # colors for new (not read) messages in thread window
- thread-window.message.unread.background = black
- thread-window.message.unread.foreground = cyan
- #thread-window.message.unread.attribute = bold
- # text to signal that you favourited this message
- thread-window.message.favourite.value = "★"
- # color of the text that signals that you favourited this message
- thread-window.message.favourite.foreground = yellow
- # text to signal that this message is marked as sensible
- thread-window.message.sensitive.value = "⚠"
- # color of the text that signals that this message is marked as sensible
- thread-window.message.sensitive.foreground = blue
- # text that signals that you boosted this message
- thread-window.message.boosted.value = "♻"
- # color of the text that signals that you boosted this message
- thread-window.message.boosted.foreground = cyan
- # text to signal that this message is the root (on the server) of the
- # thread
- thread-window.message.root.value = "↓ "
- # color of the text that signals that this message is the root (on the server)
- # of the thread
- thread-window.message.root.foreground = blue
- # the messages are organized in trees
- # color of the branch of the tree (the segments that connect messages)
- thread-window.tree.branch.foreground = red
- # color of the arrow in the tree that points to a single message
- thread-window.tree.arrow.foreground = magenta
- # color of the subject of the message (AKA sensistive text) for a
- # message
- thread-window.tree.data.foreground = white
- # color of the subject of the message (AKA sensistive text) for
- # message with no replies
- thread-window.tree.data-leaf.foreground = white
- # color of the subject of the message (AKA sensistive text) for
- # message with no parents
- thread-window.tree.root.foreground = yellow
- # arrow that point to a message
- thread-window.tree.arrow.value = "🞂 "
- # segment that connect a message with no replies to the tree
- thread-window.tree.leaf.value = "╰"
- # segment that connect a message with replies to the tree
- thread-window.tree.branch.value = "├"
- # segment that push to the left a message subject
- thread-window.tree.spacer.value = "─"
- # vertical segment that connect tree branches
- thread-window.tree.vertical-line.value = "│"
- # a message shows the composition date, specify the format:
- # values starting with '%' will be expanded, allowed values are:
- # - %hour 0-23
- # - %min
- # - %second
- # - %month numeric month
- # - %year
- # - %day day of the month
- # - %weekday 0 to 7 (note: 0 is Sunday)
- # - %short-weekday Sun to Mon
- # - %long-weekday Sunday to Monday
- # - %long-month Januray to December
- # - %short-month Jan to Dec
- # - %% a percent sign
- thread-window.date-format.value = "%year %short-month %day %hour:%min"
- # the windows that shows tags subscriptions
- tags-window.height = 1/2
- tags-window.background = black
- tags-window.foreground = #67998B
- # the colors for currently selected tags
- tags-window.input.selected.background = black
- tags-window.input.selected.foreground = #71AF8C
- # tags shows a little histogram (note that some servers do not provide
- # this information) for number of messages posted every day that
- # contains this tag
- tags-window.histogram.foreground = yellow
- # test to indicate that this tags got new messages
- tags-window.new-message.mark.value = " 📬"
- # this is the window that shows active conversation (a conversation is
- # active until the user chooses to ignore it)
- conversations-window.background = black
- conversations-window.foreground = #B48B21
- # the colors for currently selected conversation
- conversations-window.input.selected.background = #4B0301
- conversations-window.input.selected.foreground = #B27DE5
- #colors for count of read messages for conversation
- #conversations-window.read.background = black
- #conversations-window.read.foreground = blue
- #colors for count of unreaded messages for conversation
- conversations-window.unread.background = black
- conversations-window.unread.foreground = red
- # this is the message that shows available keybindings
- keybindings-window.background = black
- keybindings-window.foreground = #E2BE6F
- keybindings-window.height = 1/2
- # see configuration for tree in thread window above
- keybindings-window.tree.branch.foreground = red
- keybindings-window.tree.arrow.foreground = magenta
- keybindings-window.tree.root.foreground = #ffff00
- keybindings-window.tree.data.foreground = white
- keybindings-window.tree.data-leaf.foreground = cyan
- keybindings-window.tree.arrow.value = "🞂 "
- keybindings-window.tree.leaf.value = "╰"
- keybindings-window.tree.branch.value = "├"
- keybindings-window.tree.spacer.value = "─"
- keybindings-window.tree.vertical-line.value = "│"
- # autocomplete window
- suggestions-window.background = blue
- suggestions-window.foreground = yellow
- suggestions-window.height = 1/4
- # the directive belows configure the window at the very bottom of the
- # screen that user uses to give command to the program, also is used
- # to shows some input errors or other informations
- command-window.background = black
- command-window.foreground = white
- # text to separate keybindig added so far by the user
- command-window.command-separator.value = " → "
- # colors of the separator above
- command-window.command-separator.foreground = yellow
- command-window.command-separator.background = black
- # color for error message shown in command window
- command-window.error.message.background = black
- command-window.error.message.foreground = red
- command-window.error.message.attribute = bold
- # color for info message shown in command window
- command-window.info.message.foreground = yellow
- command-window.info.message.background = black
- command-window.info.message.attribute = bold
- # this is the window that show the content of a message
- message-window.background = black
- message-window.foreground = #c9c0c0
- # a marker on the right side of the window to show the position of the
- # message is visualized in repect of the message lines length (similar
- # to scrollbar in GUI)
- message-window.line-position-mark.foreground = white
- message-window.line-position-mark.background = black
- # the text for the marker above
- message-window.line-position-mark.value = "⧫"
- # the date format for message
- # values starting with '%' will be expanded, allowed values are:
- # - %hour 0-23
- # - %min
- # - %second
- # - %month numeric month
- # - %year
- # - %day day of the month
- # - %weekday 0 to 7 (note: 0 is Sunday)
- # - %short-weekday Sun to Mon
- # - %long-weekday Sunday to Monday
- # - %long-month Januray to December
- # - %short-month Jan to Dec
- # - %% a percent sign
- message-window.date-format.value = "%year %short-month %day %hour:%min"
- message-window.attachment-header.prefix.value = "~%──── "
- message-window.attachment-header.postfix.value = " ────~%"
- message-window.account.locked.mark.value = " 🔒"
- message-window.account.unlocked.mark.value = " 🔓"
- # the string for the header of attachments in a message, if not
- # specified a default is chosen by the software.
- # message-window.attachment-header.value = " attachment "
- # below the text printed for toot's visibility level: public,
- # unlisted, private or direct
- message-window.visibility.public = "🌐"
- message-window.visibility.unlisted = "🔓"
- message-window.visibility.private = "🔒"
- message-window.visibility.direct = "📧"
- # this is the window that allow to browse the attachments of a message
- open-attach-window.background = black
- open-attach-window.foreground = #67998B
- # the colors of selected attachment
- open-attach-window.input.selected.background = black
- open-attach-window.input.selected.foreground = #71AF8C
- # this is the window that allow to browse the links of a message
- open-message-link-window.background = black
- open-message-link-window.foreground = #FEB200
- # the colors of selected link
- open-message-link-window.input.selected.background = black
- open-message-link-window.input.selected.foreground = #FF00FF
- # gemini browser
- gemini.favicon = "🌍"
- gemini.link.scheme.gemini.prefix = "→ "
- gemini.link.scheme.other.prefix = "➶ "
- gemini.quote.prefix = "🞂 "
- gemini.bullet.prefix = "• "
- gemini.h1.prefix = "🞓 "
- gemini.h2.prefix = "🞐 "
- gemini.h3.prefix = "🞎 "
- gemini.preformatted-text.foreground = #fed700
- # this is the window that allow to browse the gemini streams
- open-gemini-stream-window.background = black
- open-gemini-stream-window.foreground = #FEB200
- # the colors of selected stream
- open-gemini-stream-window.input.selected.background = black
- open-gemini-stream-window.input.selected.foreground = #FFB200
- # window for managing gemini certificate
- gemini-certificates-window.background = black
- gemini-certificates-window.foreground = cyan
- gemini-certificates-window.input.selected.background = cyan
- gemini-certificates-window.input.selected.foreground = black
- gemini-certificates-window.link.foreground = yellow
- gemini-certificates-window.creation-time.foreground = green
- gemini-certificates-window.access-time.foreground = green
- # chats
- #chat list window
- chats-list-window.background = black
- chats-list-window.foreground = red
- # the colors for currently selected chat
- chats-list-window.input.selected.background = yellow
- chats-list-window.input.selected.foreground = black
- # actual chat window
- chat-window.date-format.value = "[%hour:%min]"
- # gemlog subscriptions
- gemini-subscription-window.background = black
- gemini-subscription-window.foreground = cyan
- gemini-subscription-window.input.selected.background = cyan
- gemini-subscription-window.input.selected.foreground = black
- # gemini text table of contents window
- gemini-toc-window.height = 1
- gemini-toc-window.background = black
- gemini-toc-window.foreground = #67998B
- # the colors for currently selected tags
- gemini-toc-window.input.selected.background = black
- gemini-toc-window.input.selected.foreground = #71AF8C
- gemini-toc-window.padding = "⋅"
|