Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Color new #196

Merged
merged 3 commits into from
Jun 30, 2024
Merged
Changes from 2 commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
87 changes: 74 additions & 13 deletions program/shinyApp/ui.R
Original file line number Diff line number Diff line change
Expand Up @@ -87,31 +87,92 @@ ui <- shiny::fluidPage(
max-width: 90%;
}
#sidebar_data_selection {
background-color: #EC001447;
background-color: #70BF4F47;
}
#sidebar_pre_processing {
background-color: #FD8D3347;
background-color: #3897F147;
}
#sidebar_sampleCorrelation {
background-color: #FFD33547;
}
#sidebar_significance_analysis {
background-color: #70BF4F47;
background-color: #A208BA35;
}
#sidebar_pca {
background-color: #3897F147;
background-color: #FD8D3347;
}
#sidebar_volcano_plot {
background-color: #A208BA47;
#sidebar_significance_analysis {
background-color: #FFD33547;
}
#sidebar_heatmap {
background-color: #EC001447;
background-color: #70BF4F47;
}
#sidebar_single_gene_visualisation {
background-color: #FD8D3347;
background-color: #3897F147;
}
#sidebar_enrichment_analysis {
background-color: #FFD33547;
background-color: #A208BA35;
}
.tabbable > .nav > li > a[data-value='Data selection'] {
background-color: #70BF4F47 !important; /* Lighter Green */
color: black
}
.tabbable > .nav > li[class=active] > a[data-value='Data selection'] {
background-color: #70BF4F !important; /* Strong Green */
color: white !important;
}
.tabbable > .nav > li > a[data-value='Pre-processing'] {
background-color: #3897F147 !important; /* Lighter Blue */
color: black !important;
}
.tabbable > .nav > li[class=active] > a[data-value='Pre-processing'] {
background-color: #3897F1 !important; /* Strong Blue */
color: white !important;
}
.tabbable > .nav > li > a[data-value='Sample Correlation'] {
background-color: #A208BA35 !important; /* Lighter Purple */
color: black !important;
}
.tabbable > .nav > li[class=active] > a[data-value='Sample Correlation'] {
background-color: #A208BA !important; /* Strong Purple */
color: white !important;
}
.tabbable > .nav > li > a[data-value='PCA'] {
background-color: #FD8D3347 !important; /* Lighter Orange */
color: black !important;
}
.tabbable > .nav > li[class=active] > a[data-value='PCA'] {
background-color: #FD8D33 !important; /* Strong Orange */
color: white !important;
}
.tabbable > .nav > li > a[data-value='Significance Analysis'] {
background-color: #FFD33547 !important; /* Lighter Yellow */
color: black !important;
}
.tabbable > .nav > li > a[data-value='Heatmap'] {
background-color: #70BF4F47 !important; /* Lighter Green */
color: black !important;
}
.tabbable > .nav > li[class=active] > a[data-value='Heatmap'] {
background-color: #70BF4F !important; /* Strong Green */
color: white !important;
}
.tabbable > .nav > li > a[data-value='Single Gene Visualisations'] {
background-color: #3897F147 !important; /* Lighter Blue */
color: black !important;
}
.tabbable > .nav > li[class=active] > a[data-value='Single Gene Visualisations'] {
background-color: #3897F1 !important; /* Strong Blue */
color: white !important;
}
.tabbable > .nav > li > a[data-value='Enrichment Analysis'] {
background-color: #FD8D3347 !important; /* Lighter Orange */
color: black !important;
}
.tabbable > .nav > li[class=active] > a[data-value='Enrichment Analysis'] {
background-color: #A208BA35 !important; /* Lighter Purple */
color: black !important;
}
.tabbable > .nav > li[class=active] > a[data-value='Significance Analysis'] {
background-color: #A208BA !important; /* Strong Purple */
color: white !important;
}
"))
),
Expand Down Expand Up @@ -181,8 +242,8 @@ ui <- shiny::fluidPage(
data_selection_panel,
pre_processing_panel,
sampleCorrelation_UI("sample_correlation"),
significance_analysis_UI("SignificanceAnalysis"),
pca_UI("PCA"),
significance_analysis_UI("SignificanceAnalysis"),
heatmap_UI("Heatmap"),
single_gene_visualisation_UI("single_gene_visualisation"),
enrichment_analysis_UI("EnrichmentAnalysis")
Expand Down
Loading