<TextColors>:
    # Hex-format RGB colors used in clients. Resets after an update/install.
    # To avoid, you can copy the TextColors section into a new "user.kv" next to this file
    # and it will read from there instead.
    black: "000000"
    red: "EE0000"
    green: "00FF7F"  # typically a location
    yellow: "FAFAD2"  # typically other slots/players
    blue: "6495ED"  # typically extra info (such as entrance)
    magenta: "EE00EE"  # typically your slot/player
    cyan: "00EEEE"  # typically regular item
    slateblue: "6D8BE8"  # typically useful item
    plum: "AF99EF"  # typically progression item
    salmon: "FA8072"  # typically trap item
    white: "FFFFFF"  # not used, if you want to change the generic text color change color in Label
<Label>:
    color: "FFFFFF"
<TabbedPanel>:
    tab_width: root.width / app.tab_count
<TooltipLabel>:
    text_size: self.width, None
    size_hint_y: None
    height: self.texture_size[1]
    font_size: dp(20)
    markup: True
<SelectableLabel>:
    canvas.before:
        Color:
            rgba: (.0, 0.9, .1, .3) if self.selected else (0.2, 0.2, 0.2, 1)
        Rectangle:
            size: self.size
            pos: self.pos
<UILog>:
    messages: 1000 # amount of messages stored in client logs.
    cols: 1
    viewclass: 'SelectableLabel'
    scroll_y: 0
    scroll_type: ["content", "bars"]
    bar_width: dp(12)
    effect_cls: "ScrollEffect"
    SelectableRecycleBoxLayout:
        default_size: None, dp(20)
        default_size_hint: 1, None
        size_hint_y: None
        height: self.minimum_height
        orientation: 'vertical'
        spacing: dp(3)
<HintLabel>:
    canvas.before:
        Color:
            rgba: (.0, 0.9, .1, .3) if self.selected else (0.2, 0.2, 0.2, 1) if self.striped else (0.18, 0.18, 0.18, 1)
        Rectangle:
            size: self.size
            pos: self.pos
    height: self.minimum_height
    receiving_text: "Receiving Player"
    item_text: "Item"
    finding_text: "Finding Player"
    location_text: "Location"
    entrance_text: "Entrance"
    found_text: "Found?"
    TooltipLabel:
        id: receiving
        text: root.receiving_text
        halign: 'center'
        valign: 'center'
        pos_hint: {"center_y": 0.5}
    TooltipLabel:
        id: item
        text: root.item_text
        halign: 'center'
        valign: 'center'
        pos_hint: {"center_y": 0.5}
    TooltipLabel:
        id: finding
        text: root.finding_text
        halign: 'center'
        valign: 'center'
        pos_hint: {"center_y": 0.5}
    TooltipLabel:
        id: location
        text: root.location_text
        halign: 'center'
        valign: 'center'
        pos_hint: {"center_y": 0.5}
    TooltipLabel:
        id: entrance
        text: root.entrance_text
        halign: 'center'
        valign: 'center'
        pos_hint: {"center_y": 0.5}
    TooltipLabel:
        id: found
        text: root.found_text
        halign: 'center'
        valign: 'center'
        pos_hint: {"center_y": 0.5}
<HintLog>:
    cols: 1
    viewclass: 'HintLabel'
    scroll_y: self.height
    scroll_type: ["content", "bars"]
    bar_width: dp(12)
    effect_cls: "ScrollEffect"
    SelectableRecycleBoxLayout:
        default_size: None, dp(20)
        default_size_hint: 1, None
        size_hint_y: None
        height: self.minimum_height
        orientation: 'vertical'
        spacing: dp(3)
<ServerLabel>:
    text: "Server:"
    size_hint_x: None
<ContainerLayout>:
    size_hint_x: 1
    size_hint_y: 1
    pos: (0, 0)
<ToolTip>:
    size: self.texture_size
    size_hint: None, None
    font_size: dp(18)
    pos_hint: {'center_y': 0.5, 'center_x': 0.5}
    halign: "left"
    canvas.before:
        Color:
            rgba: 0.2, 0.2, 0.2, 1
        Rectangle:
            size: self.size
            pos: self.pos
        Color:
            rgba: 0.098, 0.337, 0.431, 1
        Line:
            width: 3
            rectangle: self.x-2, self.y-2, self.width+4, self.height+4
        Color:
            rgba: 0.235, 0.678, 0.843, 1
        Line:
            width: 1
            rectangle: self.x-2, self.y-2, self.width+4, self.height+4
<ServerToolTip>:
    pos_hint: {'center_y': 0.5, 'center_x': 0.5}