Author Topic: Pastel color scheme  (Read 4988 times)

0 Members and 1 Guest are viewing this topic.

FellippeHeitor

  • Guest
Pastel color scheme
« on: April 26, 2018, 09:44:20 am »
An easy on the eyes scheme I'm currently using:
 
Code: QB64: [Select]
  1. 'This is supposed to be added to the end of config.txt in your internal folder.
  2. '[IDE COLOR SCHEMES]
  3. Scheme1$ = "Pastel|226226196049235216196128226128255049255206049137128108043045037010000020088088088"

If your Scheme1 slot is already taken, rename it accordingly to use the next slot.
« Last Edit: April 26, 2018, 09:47:48 am by FellippeHeitor »

Offline bplus

  • Global Moderator
  • Forum Resident
  • Posts: 8053
  • b = b + ...
    • View Profile
Re: Pastel color scheme
« Reply #1 on: April 26, 2018, 10:21:13 am »
  • Best Answer
  • Hi Fellippe,

    Is this for version 1.2 or greater?

    FellippeHeitor

    • Guest
    Re: Pastel color scheme
    « Reply #2 on: April 26, 2018, 11:05:51 am »
  • Best Answer
  • Yes

    Offline bplus

    • Global Moderator
    • Forum Resident
    • Posts: 8053
    • b = b + ...
      • View Profile
    Re: Pastel color scheme
    « Reply #3 on: April 26, 2018, 01:21:57 pm »
  • Best Answer
  • How about a screen shot?

    I am pretty good with all the bells and whistles I have in current version, but I might be motivated to change versions with fancy colors. 

    FellippeHeitor

    • Guest
    Re: Pastel color scheme
    « Reply #4 on: April 26, 2018, 01:27:24 pm »
  • Best Answer
  • Here's a screenshot. I'm using the Terminus font, 16px: https://files.ax86.net/terminus-ttf/

    Offline bplus

    • Global Moderator
    • Forum Resident
    • Posts: 8053
    • b = b + ...
      • View Profile
    Re: Pastel color scheme
    « Reply #5 on: April 26, 2018, 01:46:13 pm »
  • Best Answer
  • Oh heck! I thought it did not load??? But there it is!

    Fellippe your font is good!

    BTW, when I first ran the Nightmare fix the png file wasn't loading. I changed handle to Bait& and then it did. I switched it back and it did???


    Oh hey! Fellippe,

    Why aren't you using a myCanvas handle here instead of a direct SCREEN? (in your screen shot)

    Yep! I am thinking I missed a point somewhere on that RAM usage thing?

    Append:
    Oh hey! I do like those line numbers down the left side!
    « Last Edit: April 26, 2018, 01:54:32 pm by bplus »

    FellippeHeitor

    • Guest
    Re: Pastel color scheme
    « Reply #6 on: April 26, 2018, 02:50:17 pm »
  • Best Answer
  • Why aren't you using a myCanvas handle here instead of a direct SCREEN? (in your screen shot)

    I don't intend to switch screen modes in that program, no need to store my image handle. I can always get it back using the _DISPLAY function though:

    Code: QB64: [Select]
    1. SCREEN _NEWIMAGE(800, 600, 32)
    2. myScreen& = _DISPLAY

    Append:
    Oh hey! I do like those line numbers down the left side!
    Try View->Line numbers->Show line numbers.

    Offline bplus

    • Global Moderator
    • Forum Resident
    • Posts: 8053
    • b = b + ...
      • View Profile
    Re: Pastel color scheme
    « Reply #7 on: April 26, 2018, 04:45:53 pm »
  • Best Answer
  • Why aren't you using a myCanvas handle here instead of a direct SCREEN? (in your screen shot)

    I don't intend to switch screen modes in that program, no need to store my image handle. I can always get it back using the _DISPLAY function though:

    Code: QB64: [Select]
    1. SCREEN _NEWIMAGE(800, 600, 32)
    2. myScreen& = _DISPLAY

    Append:
    Oh hey! I do like those line numbers down the left side!
    Try View->Line numbers->Show line numbers.

    RE: Switch screen modes
    So the RAM goes on rampage when you switch screen modes. Switch screen modes? or just switch screens = screen handles includes using _NEWIMAGE calls allot? (which is not what I tested, which might explain why I didn't find anything unusual.)

    RE: Try View->Line numbers->Show line numbers.
    Ah! here is where my version number is behind the current one. I only get to View Subs under the View Menu of the IDE.