Friday, September 25, 2026
HomeMatlabNew York Occasions Colours

New York Occasions Colours


I like the colour scheme within the New York Occasions Video games part and infrequently make it my colororder.

https://www.nytco.com/video games

Contents

Colormaps

You will need to distinguish between “shade map” and “shade order”. A colormap defines the colours utilized by floor, picture, and patch objects. MATLAB offers 22 shade maps. parula is the default.

    disp(colormaps)
    "parula"
    "turbo"
    "hsv"
    "sizzling"
    "cool"
    "spring"
    "summer season"
    "autumn"
    "winter"
    "grey"
    "bone"
    "copper"
    "pink"
    "sky"
    "abyss"
    "nebula"
    "jet"
    "traces"
    "colorcube"
    "prism"
    "flag"
    "white"

Palettes

The colormap defines the palette of colours utilized by the plot perform for a number of traces. MATLAB offers 10 palettes. gem is the default.

    disp(palettes')
    "gem"
    "gem12"
    "glow"
    "glow12"
    "sail"
    "reef"
    "meadow"
    "dye"
    "earth"
    "default"

Coloration Order

The colours utilized by MATLAB for plotting a number of traces should be effectively separated. These colours are given by the colororder property of the present axes. By default, MATLAB cycles by way of the seven colours within the gem palette.

    gcaco=get(gca,"ColorOrder");
    show_rgb(gcaco)

    shut all
    clear

New York Occasions Video games

The New York Occasions Video games originated with the newspaper’s crossword puzzle in 1942. NYT Video games was established in 2014, with the addition of the Mini Crossword. Wordle was added in 2022 and I’ve been enjoying Wordle virtually each day since its launch.

NYT Video games now has over 10 million each day gamers. In line with one member of workers, “the half joke that’s repeated internally is that The New York Occasions is now a gaming firm that additionally occurs to supply information.”

NYT Coloration Order

I like the colour scheme that the Occasions makes use of within the Video games part. It offers a subtler shade order than the default gem.

    nyt_palette
    
ans =
   184   228    68
   248   211     0
   121   160   238
   184   113   198
   160    82    45
   235   235   200

    nytco = nyt_palette/256
    ribbon(6)
    set(gcf,'place',[200 200 440 300])
    set(gca,'colororder',nytco)
    drawnow
   
nytco =
    0.7188    0.8906    0.2656
    0.9688    0.8242         0
    0.4727    0.6250    0.9297
    0.7188    0.4414    0.7734
    0.6250    0.3203    0.1758
    0.9180    0.9180    0.7812

    show_rgb(nytco)
    drawnow

Tangrams

In October, I used NYT colours for the kitty in my weblog publish about Tangrams.

NYT Qube

The NYT colours give the Rubiks Dice a brand new look.

Gallery

The MiniGallery with NYT colours.

fftmatrix

The Quick Finite Fourier Matrix with the NYT colours.

<!–
perform grabCode_4f2b9a66df304463b8c4fa2d059695c0() {
// Bear in mind the title so we will use it within the new web page
title = doc.title;

// Break up these strings in order that their presence
// within the Javascript doesn't mess up the seek for
// the MATLAB code.
t1='4f2b9a66df304463b8c4fa2d059695c0 ' + '##### ' + 'SOURCE BEGIN' + ' #####';
t2='##### ' + 'SOURCE END' + ' #####' + ' 4f2b9a66df304463b8c4fa2d059695c0';

b=doc.getElementsByTagName('physique')[0];
i1=b.innerHTML.indexOf(t1)+t1.size;
i2=b.innerHTML.indexOf(t2);

code_string = b.innerHTML.substring(i1, i2);
code_string = code_string.change(/REPLACE_WITH_DASH_DASH/g,'–');

// Use /x3C/g as a substitute of the less-than character to keep away from errors
// within the XML parser.
// Use 'x26#60;' as a substitute of '<' in order that the XML parser
// doesn't go forward and substitute the less-than character.
code_string = code_string.change(/x3C/g, 'x26#60;');

copyright = 'Copyright 2025 The MathWorks, Inc.';

w = window.open();
d = w.doc;
d.write('

n');
        d.write(code_string);

        // Add copyright line on the backside if specified.
        if (copyright.size > 0) {
            d.writeln('');
            d.writeln('%%');
            if (copyright.size > 0) {
                d.writeln('% _' + copyright + '_');
            }
        }

        d.write('

n’);

d.title = title + ‘ (MATLAB code)’;
d.shut();
}
–>


Get
the MATLAB code (requires JavaScript)

Revealed with MATLAB® R2025a

<!–
4f2b9a66df304463b8c4fa2d059695c0 ##### SOURCE BEGIN #####
%% New York Occasions Colours
% I like the colour scheme within the New York Occasions
% Video games part and infrequently make it my |colororder|.
%
% <>
%
%
%

%% Colormaps
% You will need to distinguish between “shade map”
% and “shade order”.
% A |colormap| defines the colours utilized by
% floor, picture, and patch objects. MATLAB offers 22 shade maps.
% |parula| is the default.

disp(colormaps)

%%
%
% <>
%

%% Palettes
% The |colormap| defines the |palette| of colours utilized by the |plot|
% perform for a number of traces. MATLAB offers 10 palettes.
% |gem| is the default.

disp(palettes’)

%%
%
% <>
%

%% Coloration Order
% The colours utilized by MATLAB for plotting a number of traces
% should be effectively separated.
% These colours are given by the |colororder| property of
% the present axes.
% By default, MATLAB cycles by way of the seven colours
% within the |gem| palette.

gcaco = get(gca,”ColorOrder”);
show_rgb(gcaco)

%%

shut all
clear

%% New York Occasions Video games
% The New York Occasions Video games originated with the newspaper’s crossword puzzle
% in 1942. NYT Video games was established in 2014, with the addition of
% the Mini Crossword. Wordle was added in 2022 and
% I’ve been enjoying Wordle virtually each day since its launch.
%
% NYT Video games now has over 10 million each day gamers. In line with one
% member of workers, “the half joke that’s repeated internally is that
% The New York Occasions is now a gaming firm that additionally occurs to
% provide information.”

%% NYT Coloration Order
% I like the colour scheme that the Occasions makes use of within the
% Video games part.
% It offers a subtler shade order than the default |gem|.

nyt_palette

%%

nytco = nyt_palette/256
ribbon(6)
set(gcf,’place’,[200 200 440 300])
set(gca,’colororder’,nytco)
drawnow

%2%

show_rgb(nytco)
drawnow

%% Tangrams
%
% In October, I used NYT colours for the kitty in my weblog publish about
% .
%
% <>
%

%% NYT Qube
% The NYT colours give the
% a brand new look.
%
% <>
%

%% Gallery
% The
% with NYT colours.
%
% <>
%
%
%% |fftmatrix|
% The
% with the NYT colours.
%
% <>
%
##### SOURCE END ##### 4f2b9a66df304463b8c4fa2d059695c0
–>

Previous articleDouble Pendulum
RELATED ARTICLES

Double Pendulum

Simulink Agentic Toolkit

Beresford Parlett

LEAVE A REPLY

Please enter your comment!
Please enter your name here

Most Popular

Double Pendulum

Simulink Agentic Toolkit

Beresford Parlett

MATLAB on the Steam Deck

Recent Comments