Avid Pro Audio Community

Avid Pro Audio Community

How to Join & Post  •  Community Terms of Use  •  Help Us Help You

Knowledge Base Search  •  Community Search  •  Learn & Support


Avid Home Page

Go Back   Avid Pro Audio Community > Legacy Products > Pro Tools 2020
Register FAQ Today's Posts Search

Reply
 
Thread Tools Search this Thread Display Modes
  #301  
Old 11-29-2020, 10:32 PM
pasacmorg pasacmorg is offline
Member
 
Join Date: Apr 2010
Location: Bainbridge Island
Posts: 13
Default Re: Dark Theme in Pro Tools 2020.11

Thanks! I also noticed that:


16-bit color value = (8-bit color value * 256) + 8-bit color value


Example:


ActiveTabColor (19018,35466,64250,65535)


Dividing each of these numbers by 256 and throwing away the remainder (a.k.a integer division or using a floor function) results in 8-bit RGBA values in the 0-255 range:



(74,138,250,255)


Keeping only the remainder (modulus division) results in the same set of values - that means that the Most and Least Significant Bytes of the 16-bit values are the same!



So let's say we're starting with the 8-bit RGBA color spec above. To get the the 16-bit versions:



(74 * 256) + 74 = 19018

(138 * 256) + 138 = 35466

(250 * 256) + 250 = 64250
(255 * 256) + 255 = 65535


Currently this holds for all the default 16-bit RGBA values
Reply With Quote
  #302  
Old 11-30-2020, 04:15 AM
musicman691 musicman691 is offline
Member
 
Join Date: Dec 2009
Location: The Sopranos State (NJ)
Posts: 19,139
Default Re: Dark Theme in Pro Tools 2020.11

Quote:
Originally Posted by Obsidian Dragon View Post
Folks. I love the passion here, but wow. 30 pages and growing over a color scheme (dark mode). I glanced at it once 2020.11 was installed and disabled it. Spent my time making music instead of futzing around to tweak a color scheme I didn't like. Appreciate the hard work some of you have put into this so Avid can avoid taking responsibility for a crappy implementation of dark mode.
To each their own but as I said many times dark mode is what's having me finally update from 2019.6. I stayed on that because of the bugs in the MIDI event list in every PT version after that. but this was the deciding factor.


With having a lot of free time on my hands due to this stupid pandemic combined with my natural curiosity in seeing how things work and trying to fix said things led me to do what I'm doing.


Main thing is we have a choice now that we didn't have before. Use what you want to use
__________________
Jack
See profile for system details
iMac dead & retired as of 11/4/17

QAPLA!
Reply With Quote
  #303  
Old 11-30-2020, 05:17 AM
K Roche's Avatar
K Roche K Roche is offline
Member
 
Join Date: Jan 2006
Location: Wilds of Wyoming
Posts: 2,315
Default Re: Dark Theme in Pro Tools 2020.11

Quote:
Originally Posted by Obsidian Dragon View Post
Folks. I love the passion here, but wow. 30 pages and growing over a color scheme (dark mode). I glanced at it once 2020.11 was installed and disabled it. Spent my time making music instead of futzing around to tweak a color scheme I didn't like. Appreciate the hard work some of you have put into this so Avid can avoid taking responsibility for a crappy implementation of dark mode.
Gotta love the irony of taking the time out of your busy creative schedule to needlessly come on here , help it move towards 31 pages, and explain how you are surprised and too busy to take the time to tweak it .
__________________
System :
Studio - Avid Carbon interface , PT Ultimate 2023.12 Mid 2020 (intel) iMac 27" Ventura 13.2 .1
Mobile - 2021 14 " MBP M1 Pro PT Ultimate 2024.3.0 --Sonoma 14.4



Enjoy the Journey
.... Kev...
Reply With Quote
  #304  
Old 11-30-2020, 05:20 AM
musicman691 musicman691 is offline
Member
 
Join Date: Dec 2009
Location: The Sopranos State (NJ)
Posts: 19,139
Default Re: Dark Theme in Pro Tools 2020.11

Quote:
Originally Posted by K Roche View Post
Gotta love the irony of taking the time out of your busy creative schedule to needlessly come on here , help it move towards 31 pages, and explain how you are surprised and too busy to take the time to tweak it .
Love it.


Kev:
Have you seen the latest changes I've made to the file? I posted an imgur link a couple of posts back. I managed to make the track grid in the edit screen a bit more usable.
__________________
Jack
See profile for system details
iMac dead & retired as of 11/4/17

QAPLA!
Reply With Quote
  #305  
Old 11-30-2020, 05:22 AM
K Roche's Avatar
K Roche K Roche is offline
Member
 
Join Date: Jan 2006
Location: Wilds of Wyoming
Posts: 2,315
Default Re: Dark Theme in Pro Tools 2020.11

Quote:
Originally Posted by musicman691 View Post
Love it.


Kev:
Have you seen the latest changes I've made to the file? I posted an imgur link a couple of posts back. I managed to make the tarck grid in the edit screen a bit more usable.
No I'll check it out, Thanks.
__________________
System :
Studio - Avid Carbon interface , PT Ultimate 2023.12 Mid 2020 (intel) iMac 27" Ventura 13.2 .1
Mobile - 2021 14 " MBP M1 Pro PT Ultimate 2024.3.0 --Sonoma 14.4



Enjoy the Journey
.... Kev...
Reply With Quote
  #306  
Old 11-30-2020, 05:31 AM
musicman691 musicman691 is offline
Member
 
Join Date: Dec 2009
Location: The Sopranos State (NJ)
Posts: 19,139
Default Re: Dark Theme in Pro Tools 2020.11

Quote:
Originally Posted by pasacmorg View Post
Here are the dark mode color elements and RGBA values in both 16 bit (uppercase) and 8 bit values (lowercase).
Quote:
Originally Posted by pasacmorg View Post
Thanks! I also noticed that:

16-bit color value = (8-bit color value * 256) + 8-bit color value

Example:
ActiveTabColor (19018,35466,64250,65535)

Dividing each of these numbers by 256 and throwing away the remainder (a.k.a integer division or using a floor function) results in 8-bit RGBA values in the 0-255 range:

(74,138,250,255)

Keeping only the remainder (modulus division) results in the same set of values - that means that the Most and Least Significant Bytes of the 16-bit values are the same!

So let's say we're starting with the 8-bit RGBA color spec above. To get the the 16-bit versions:

(74 * 256) + 74 = 19018

(138 * 256) + 138 = 35466

(250 * 256) + 250 = 64250
(255 * 256) + 255 = 65535

Currently this holds for all the default 16-bit RGBA values
Thanks for the work as I was going nuts trying to figure out the conversion as most online color table sources use 8 bit values and the dark mode file uses 16 bit. And just to make clear this pdf is for the stock file colors and not the modified colors I and tmuzik have worked out.
__________________
Jack
See profile for system details
iMac dead & retired as of 11/4/17

QAPLA!
Reply With Quote
  #307  
Old 11-30-2020, 08:30 AM
Obsidian Dragon Obsidian Dragon is offline
Member
 
Join Date: Aug 2004
Location: Los Angeles, CA
Posts: 4,524
Default Re: Dark Theme in Pro Tools 2020.11

Quote:
Originally Posted by K Roche View Post
Gotta love the irony of taking the time out of your busy creative schedule to needlessly come on here , help it move towards 31 pages, and explain how you are surprised and too busy to take the time to tweak it .
Ha ha. Yes it seems ironic. I never said I was too busy, just surprised that this grew into so many posts. Again I appreciate the work for folks that want and like dark mode. For my eyes, I like it bright and bold—but to each their own. Peace.
__________________
Obsidian Dragon
MacbookPro14,3 - Intel Core i7 3.1 GHz, 16 GB
MacOS 13.6.6 running Protools 2024.3.1

Mac Studio M1Max - 64GB
MacOS 14.4.1 running Protools 2024.3.1
Reply With Quote
  #308  
Old 11-30-2020, 02:13 PM
rampartthemovie rampartthemovie is offline
Member
 
Join Date: Dec 2016
Location: Not Applicable
Posts: 49
Default Re: Dark Theme in Pro Tools 2020.11

shoutout to the guy who actually found pt-colors config file in the first place and found out that it actually makes changes in the first place as well.
Reply With Quote
  #309  
Old 11-30-2020, 05:41 PM
musicman691 musicman691 is offline
Member
 
Join Date: Dec 2009
Location: The Sopranos State (NJ)
Posts: 19,139
Default Re: Dark Theme in Pro Tools 2020.11

Quote:
Originally Posted by rampartthemovie View Post
shoutout to the guy who actually found pt-colors config file in the first place and found out that it actually makes changes in the first place as well.
I can't lay claim to finding the dark mode file but as you've seen I'm one of two people here that are posting changes they've made and what they've found. Surprised there aren't more digging into this. Like I also said I have the time due to this damned plandemic to muck around so I pass along what I've found (at least for Mac users).
__________________
Jack
See profile for system details
iMac dead & retired as of 11/4/17

QAPLA!
Reply With Quote
  #310  
Old 11-30-2020, 07:05 PM
ZEUSS ZEUSS is offline
Member
 
Join Date: Aug 2002
Posts: 720
Default Re: Dark Theme in Pro Tools 2020.11

Quote:
Originally Posted by musicman691 View Post
I can't lay claim to finding the dark mode file but as you've seen I'm one of two people here that are posting changes they've made and what they've found. Surprised there aren't more digging into this. Like I also said I have the time due to this damned plandemic to muck around so I pass along what I've found (at least for Mac users).

Your doing a great job! So much better.
__________________
Mac OS 12.7.2 Monterey (19H15) Mac Pro 2013 (Trashcan) 6 Core 64 gigs Ram, Red Line 16, Native Thunderbolt, ProTools Ultimate 2024.3.1

Macbook Pro, 2019 (15,1) Mac OS 13.6.6 Ventura,32 Gigs Ram,2.3 GHz I9 8 Core ProTools Ultimate 2024.3.1, Apollo 8 Silver,TwinX.
Reply With Quote
Reply


Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off

Forum Jump

Similar Threads
Thread Thread Starter Forum Replies Last Post
"Dark" theme improvements in 2021.3 midnightrambler Pro Tools 19 04-04-2021 05:15 AM
How to change Pro Tools 12 to a Dark theme/skin Defier Pro Tools 12 7 03-26-2016 05:22 PM
Pro Tools 8 theme for Reaper? JazzyJ 003, Mbox 2, Digi 002, original Mbox, Digi 001 (Mac) 0 06-09-2010 07:51 AM
Pro tools theme song....! roijin Pro Tools TDM Systems (Mac) 2 11-27-2001 07:15 AM


All times are GMT -7. The time now is 05:08 PM.


Powered by: vBulletin, Copyright ©2000 - 2008, Jelsoft Enterprises Limited. Forum Hosted By: URLJet.com