https://github.com/fgerick/catppuccinmakiethemes.jl
Science Score: 26.0%
This score indicates how likely this project is to be science-related based on various indicators:
-
○CITATION.cff file
-
✓codemeta.json file
Found codemeta.json file -
✓.zenodo.json file
Found .zenodo.json file -
○DOI references
-
○Academic publication links
-
○Academic email domains
-
○Institutional organization owner
-
○JOSS paper metadata
-
○Scientific vocabulary similarity
Low similarity (7.3%) to scientific vocabulary
Last synced: 4 months ago
·
JSON representation
Repository
Basic Info
- Host: GitHub
- Owner: fgerick
- License: mit
- Language: Julia
- Default Branch: main
- Size: 955 KB
Statistics
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
- Releases: 0
Created almost 2 years ago
· Last pushed 7 months ago
Metadata Files
Readme
License
README.md
CatppuccinMakieThemes
Provides catppuccin themes for the Makie.jl packages.
Installation
julia
import Pkg; Pkg.add(url="https://github.com/fgerick/CatpuccinMakieThemes.jl.git")
Example
Example figure
```julia using CairoMakie, CatppuccinMakieThemes using Random
function demofigure() Random.seed!(2)
f = Figure()
ax = Axis(f[1, 1],
title = "measurements",
xlabel = "time (s)",
ylabel = "amplitude")
labels = ["alpha", "beta", "gamma", "delta", "epsilon", "zeta"]
for i in 1:6
y = cumsum(randn(10)) .* (isodd(i) ? 1 : -1)
lines!(y, label = labels[i])
scatter!(y, label = labels[i])
end
Legend(f[1, 2], ax, "legend", merge = true)
Axis3(f[1, 3],
viewmode = :stretch,
zlabeloffset = 40,
title = "sinusoid")
s = surface!(0:0.5:10, 0:0.5:10, (x, y) -> sqrt(x * y) + sin(1.5x))
Colorbar(f[1, 4], s, label = "intensity")
ax = Axis(f[2, 1:2],
title = "different species",
xlabel = "height (m)",
ylabel = "density",)
for i in 1:6
y = randn(200) .+ 2i
density!(y)
end
tightlimits!(ax, Bottom())
xlims!(ax, -1, 15)
Axis(f[2, 3:4],
title = "stock performance",
xticks = (1:6, labels),
xlabel = "company",
ylabel = "gain (\$)",
xticklabelrotation = pi/6)
for i in 1:6
data = randn(1)
barplot!([i], data)
rangebars!([i], data .- 0.2, data .+ 0.2)
end
f
end ```
Mocha
julia
CairoMakie.set_theme!(CatppuccinMakieThemes.Mocha)
demofigure()

Latte
julia
CairoMakie.set_theme!(CatppuccinMakieThemes.Latte)
demofigure()

Macchiato
julia
CairoMakie.set_theme!(CatppuccinMakieThemes.Macchiato)
demofigure()

Frappe
julia
CairoMakie.set_theme!(CatppuccinMakieThemes.Frappe)
demofigure()

Owner
- Name: Felix Gerick
- Login: fgerick
- Kind: user
- Location: Toulouse
- Company: French National Centre for Space Studies (CNES)
- Website: fgerick.github.io
- Repositories: 5
- Profile: https://github.com/fgerick
Researcher in rotating fluid dynamics in planetary cores
GitHub Events
Total
- Delete event: 2
- Issue comment event: 1
- Push event: 7
- Pull request event: 2
- Create event: 2
Last Year
- Delete event: 2
- Issue comment event: 1
- Push event: 7
- Pull request event: 2
- Create event: 2
Dependencies
.github/workflows/CI.yml
actions
- actions/checkout v4 composite
- codecov/codecov-action v3 composite
- julia-actions/cache v1 composite
- julia-actions/julia-buildpkg v1 composite
- julia-actions/julia-docdeploy v1 composite
- julia-actions/julia-processcoverage v1 composite
- julia-actions/julia-runtest v1 composite
- julia-actions/setup-julia v1 composite
.github/workflows/CompatHelper.yml
actions
.github/workflows/TagBot.yml
actions
- JuliaRegistries/TagBot v1 composite