Is it possible to set a default theme for users in gitlab? Looking in gitlab / gitlab.yaml, I do not see any options for setting the default value.
Looking at the database, I see that there is "color_scheme_id". I would prefer not to edit the database for each user.
mysql> select id, name, theme_id, color_scheme_id from users;
+----+-------------------+----------+-----------------+
| id | name | theme_id | color_scheme_id |
+----+-------------------+----------+-----------------+
| 1 | Administrator | 1 | 1 |
| 2 | foo foo | 4 | 4 |
| 3 | bar bar | 2 | 1 |
| 4 | foobar foobar | 2 | 1 |
+----+-------------------+----------+-----------------+
4 rows in set (0.00 sec)
source
share