dark

  1. F

    Share My Creation [B4X] Dark Theme for Code Editor

    A Dark theme for the IDE env. The theme is matched to my taste of colors :) so i hope others will like it too. To use, download the file and unzip it in the folder below: C: \ Program Files (x86) \ Anywhere Software \ Basic4android \ Themes In the IDE, open the Tools / IDE options / Themes...
  2. Markus Winter

    B4J Question Dark Mode on Win / Mac / Linux?

    Ok, I searched for 5 min but haven't found an answer, so time for a new thread: How do I support light and dark mode on the DESKTOP? TiA Markus
  3. M

    iOS Question iTableView permanent selection

    Hi i'm learning how to use the tableview in the best way. I'm trying to do a settings page like the ios one, with elements that opens other pages. Sub Process_Globals Public App As Application Public NavControl As NavigationController Private Page1 As Page Private Panel1 As...
  4. M

    Android Question AC ToolBar change menu button color

    Hi everyone! How do I change the color of this three dots?
  5. Alexander Stolte

    Android Code Snippet [B4X] Check if color is dark or light

    This Code is a convert from this Stackoverflow thread. Private Sub isColorDark(color As Int) As Boolean Dim darkness As Int = 1 - (0.299 * GetARGB(color)(1) + 0.587 * GetARGB(color)(2) + 0.114 * GetARGB(color)(3))/255 If darkness <= 0.5 Then Return False 'It's a...
Top