Merge branch 'master' into blender2.8
This commit is contained in:
@@ -1249,7 +1249,7 @@ class CyclesRenderLayerSettings(bpy.types.PropertyGroup):
|
||||
cls.denoising_radius = IntProperty(
|
||||
name="Denoising Radius",
|
||||
description="Size of the image area that's used to denoise a pixel (higher values are smoother, but might lose detail and are slower)",
|
||||
min=1, max=50,
|
||||
min=1, max=25,
|
||||
default=8,
|
||||
)
|
||||
cls.denoising_relative_pca = BoolProperty(
|
||||
|
||||
@@ -364,7 +364,7 @@ ccl_device_inline void kernel_write_result(KernelGlobals *kg, ccl_global float *
|
||||
}
|
||||
else {
|
||||
kernel_write_pass_float3_variance(buffer + kernel_data.film.pass_denoising_data + DENOISING_PASS_COLOR,
|
||||
sample, L_sum);
|
||||
sample, ensure_finite3(L_sum));
|
||||
}
|
||||
|
||||
kernel_write_pass_float3_variance(buffer + kernel_data.film.pass_denoising_data + DENOISING_PASS_NORMAL,
|
||||
|
||||
@@ -23,7 +23,7 @@ ccl_device void kernel_indirect_background(KernelGlobals *kg)
|
||||
int thread_index = ccl_global_id(1) * ccl_global_size(0) + ccl_global_id(0);
|
||||
int ray_index;
|
||||
|
||||
if(kernel_data.integrator.ao_bounces) {
|
||||
if(kernel_data.integrator.ao_bounces != INT_MAX) {
|
||||
ray_index = get_ray_index(kg, thread_index,
|
||||
QUEUE_ACTIVE_AND_REGENERATED_RAYS,
|
||||
kernel_split_state.queue_data,
|
||||
|
||||
@@ -176,7 +176,10 @@ ccl_device void math_trimatrix_cholesky(ccl_global float *A, int n, int stride)
|
||||
* symmetrical positive-semidefinite by construction, so we can just use this function with A=Xt*W*X and y=Xt*W*y. */
|
||||
ccl_device_inline void math_trimatrix_vec3_solve(ccl_global float *A, ccl_global float3 *y, int n, int stride)
|
||||
{
|
||||
math_trimatrix_add_diagonal(A, n, 1e-4f, stride); /* Improve the numerical stability. */
|
||||
/* Since the first entry of the design row is always 1, the upper-left element of XtWX is a good
|
||||
* heuristic for the amount of pixels considered (with weighting), therefore the amount of correction
|
||||
* is scaled based on it. */
|
||||
math_trimatrix_add_diagonal(A, n, 3e-7f*A[0], stride); /* Improve the numerical stability. */
|
||||
math_trimatrix_cholesky(A, n, stride); /* Replace A with L so that L*Lt = A. */
|
||||
|
||||
/* Use forward substitution to solve L*b = y, replacing y by b. */
|
||||
|
||||
@@ -1,7 +1,7 @@
|
||||
<bpy>
|
||||
<Theme>
|
||||
<user_interface>
|
||||
<ThemeUserInterface menu_shadow_fac="0.5"
|
||||
<ThemeUserInterface menu_shadow_fac="0.444043"
|
||||
menu_shadow_width="12"
|
||||
icon_file=""
|
||||
icon_alpha="1"
|
||||
@@ -10,155 +10,155 @@
|
||||
axis_y="#00dc00"
|
||||
axis_z="#0000dc">
|
||||
<wcol_regular>
|
||||
<ThemeWidgetColors outline="#000000"
|
||||
inner="#3c3b37ff"
|
||||
inner_sel="#131311ff"
|
||||
item="#cbc3bbff"
|
||||
text="#dfdfdf"
|
||||
text_sel="#dfdfdf"
|
||||
show_shaded="TRUE"
|
||||
shadetop="21"
|
||||
shadedown="-21">
|
||||
</ThemeWidgetColors>
|
||||
</wcol_regular>
|
||||
<wcol_tool>
|
||||
<ThemeWidgetColors outline="#000000"
|
||||
inner="#3c3b37ff"
|
||||
inner_sel="#3c3b37ff"
|
||||
item="#cbc3bbff"
|
||||
text="#dfdbcf"
|
||||
text_sel="#f47421"
|
||||
show_shaded="TRUE"
|
||||
shadetop="17"
|
||||
shadedown="-17">
|
||||
</ThemeWidgetColors>
|
||||
</wcol_tool>
|
||||
<wcol_radio>
|
||||
<ThemeWidgetColors outline="#000000"
|
||||
inner="#1a1a1aff"
|
||||
inner_sel="#6a3859ff"
|
||||
item="#3c3b37ff"
|
||||
text="#dfdbcf"
|
||||
text_sel="#dfdbcf"
|
||||
show_shaded="TRUE"
|
||||
shadetop="5"
|
||||
shadedown="-5">
|
||||
</ThemeWidgetColors>
|
||||
</wcol_radio>
|
||||
<wcol_text>
|
||||
<ThemeWidgetColors outline="#0d0d0d"
|
||||
inner="#272725ff"
|
||||
inner_sel="#171717ff"
|
||||
item="#6a3859ff"
|
||||
text="#dfdbcf"
|
||||
text_sel="#ffffff"
|
||||
show_shaded="TRUE"
|
||||
shadetop="-10"
|
||||
shadedown="0">
|
||||
</ThemeWidgetColors>
|
||||
</wcol_text>
|
||||
<wcol_option>
|
||||
<ThemeWidgetColors outline="#0d0d0d"
|
||||
inner="#272727ff"
|
||||
inner_sel="#080808ff"
|
||||
item="#fff8ecff"
|
||||
text="#84817e"
|
||||
text_sel="#dfdbcf"
|
||||
show_shaded="TRUE"
|
||||
shadetop="15"
|
||||
shadedown="-5">
|
||||
</ThemeWidgetColors>
|
||||
</wcol_option>
|
||||
<wcol_toggle>
|
||||
<ThemeWidgetColors outline="#000000"
|
||||
inner="#464640ff"
|
||||
inner_sel="#151515ff"
|
||||
item="#cbc3bbff"
|
||||
text="#c3bfb7"
|
||||
text_sel="#ffffff"
|
||||
show_shaded="TRUE"
|
||||
shadetop="7"
|
||||
shadedown="-3">
|
||||
</ThemeWidgetColors>
|
||||
</wcol_toggle>
|
||||
<wcol_num>
|
||||
<ThemeWidgetColors outline="#080808"
|
||||
inner="#3c3b37ff"
|
||||
inner_sel="#171717ff"
|
||||
item="#ffffffff"
|
||||
text="#dfdbcf"
|
||||
text_sel="#f47421"
|
||||
show_shaded="TRUE"
|
||||
shadetop="20"
|
||||
shadedown="-20">
|
||||
</ThemeWidgetColors>
|
||||
</wcol_num>
|
||||
<wcol_numslider>
|
||||
<ThemeWidgetColors outline="#0d0d0d"
|
||||
inner="#181818ff"
|
||||
inner_sel="#151515ff"
|
||||
item="#6a3859ff"
|
||||
text="#eeedeb"
|
||||
text_sel="#ffffff"
|
||||
show_shaded="TRUE"
|
||||
shadetop="-22"
|
||||
shadedown="26">
|
||||
</ThemeWidgetColors>
|
||||
</wcol_numslider>
|
||||
<wcol_box>
|
||||
<ThemeWidgetColors outline="#0d0d0d"
|
||||
inner="#252522ff"
|
||||
<ThemeWidgetColors outline="#616161"
|
||||
inner="#999999ff"
|
||||
inner_sel="#646464ff"
|
||||
item="#0d0d0dff"
|
||||
text="#eeedeb"
|
||||
text_sel="#eeedeb"
|
||||
show_shaded="TRUE"
|
||||
shadetop="-5"
|
||||
shadedown="0">
|
||||
</ThemeWidgetColors>
|
||||
</wcol_box>
|
||||
<wcol_menu>
|
||||
<ThemeWidgetColors outline="#0d0d0d"
|
||||
inner="#3c3b37ff"
|
||||
inner_sel="#121212ff"
|
||||
item="#ffffffff"
|
||||
text="#dfdbcf"
|
||||
item="#191919ff"
|
||||
text="#000000"
|
||||
text_sel="#ffffff"
|
||||
show_shaded="TRUE"
|
||||
shadetop="10"
|
||||
shadedown="-10">
|
||||
</ThemeWidgetColors>
|
||||
</wcol_regular>
|
||||
<wcol_tool>
|
||||
<ThemeWidgetColors outline="#262626"
|
||||
inner="#b2bec6ff"
|
||||
inner_sel="#646464ff"
|
||||
item="#191919ff"
|
||||
text="#000000"
|
||||
text_sel="#ffffff"
|
||||
show_shaded="TRUE"
|
||||
shadetop="10"
|
||||
shadedown="-10">
|
||||
</ThemeWidgetColors>
|
||||
</wcol_tool>
|
||||
<wcol_radio>
|
||||
<ThemeWidgetColors outline="#262626"
|
||||
inner="#d0d0d0ff"
|
||||
inner_sel="#667677ff"
|
||||
item="#ffffffff"
|
||||
text="#000000"
|
||||
text_sel="#ffffff"
|
||||
show_shaded="TRUE"
|
||||
shadetop="10"
|
||||
shadedown="-10">
|
||||
</ThemeWidgetColors>
|
||||
</wcol_radio>
|
||||
<wcol_text>
|
||||
<ThemeWidgetColors outline="#262626"
|
||||
inner="#b2bec6ff"
|
||||
inner_sel="#999999ff"
|
||||
item="#5a5a5aff"
|
||||
text="#000000"
|
||||
text_sel="#ffffff"
|
||||
show_shaded="TRUE"
|
||||
shadetop="0"
|
||||
shadedown="10">
|
||||
</ThemeWidgetColors>
|
||||
</wcol_text>
|
||||
<wcol_option>
|
||||
<ThemeWidgetColors outline="#262626"
|
||||
inner="#aababbff"
|
||||
inner_sel="#667677ff"
|
||||
item="#ffffffff"
|
||||
text="#000000"
|
||||
text_sel="#000000"
|
||||
show_shaded="TRUE"
|
||||
shadetop="10"
|
||||
shadedown="-10">
|
||||
</ThemeWidgetColors>
|
||||
</wcol_option>
|
||||
<wcol_toggle>
|
||||
<ThemeWidgetColors outline="#262626"
|
||||
inner="#d0d0d0ff"
|
||||
inner_sel="#7d7d7dff"
|
||||
item="#191919ff"
|
||||
text="#000000"
|
||||
text_sel="#ffffff"
|
||||
show_shaded="TRUE"
|
||||
shadetop="15"
|
||||
shadedown="-15">
|
||||
</ThemeWidgetColors>
|
||||
</wcol_toggle>
|
||||
<wcol_num>
|
||||
<ThemeWidgetColors outline="#262626"
|
||||
inner="#a1a1a1a4"
|
||||
inner_sel="#999999ff"
|
||||
item="#585858ff"
|
||||
text="#000000"
|
||||
text_sel="#ffffff"
|
||||
show_shaded="TRUE"
|
||||
shadetop="-5"
|
||||
shadedown="0">
|
||||
</ThemeWidgetColors>
|
||||
</wcol_num>
|
||||
<wcol_numslider>
|
||||
<ThemeWidgetColors outline="#262626"
|
||||
inner="#808080ff"
|
||||
inner_sel="#999999ff"
|
||||
item="#d2d2d2ff"
|
||||
text="#000000"
|
||||
text_sel="#ffffff"
|
||||
show_shaded="TRUE"
|
||||
shadetop="-20"
|
||||
shadedown="0">
|
||||
</ThemeWidgetColors>
|
||||
</wcol_numslider>
|
||||
<wcol_box>
|
||||
<ThemeWidgetColors outline="#262626"
|
||||
inner="#aaaaaaff"
|
||||
inner_sel="#646464ff"
|
||||
item="#191919ff"
|
||||
text="#000000"
|
||||
text_sel="#ffffff"
|
||||
show_shaded="TRUE"
|
||||
shadetop="0"
|
||||
shadedown="0">
|
||||
</ThemeWidgetColors>
|
||||
</wcol_box>
|
||||
<wcol_menu>
|
||||
<ThemeWidgetColors outline="#262626"
|
||||
inner="#d0d0d0ff"
|
||||
inner_sel="#464646ff"
|
||||
item="#717171ff"
|
||||
text="#000000"
|
||||
text_sel="#cccccc"
|
||||
show_shaded="TRUE"
|
||||
shadetop="5"
|
||||
shadedown="-10">
|
||||
</ThemeWidgetColors>
|
||||
</wcol_menu>
|
||||
<wcol_pulldown>
|
||||
<ThemeWidgetColors outline="#0d0d0d"
|
||||
<ThemeWidgetColors outline="#000000"
|
||||
inner="#3f3f3fff"
|
||||
inner_sel="#f47421ff"
|
||||
inner_sel="#7f7f7fff"
|
||||
item="#ffffffff"
|
||||
text="#dddddd"
|
||||
text="#000000"
|
||||
text_sel="#ffffff"
|
||||
show_shaded="FALSE"
|
||||
shadetop="25"
|
||||
shadedown="-20">
|
||||
show_shaded="TRUE"
|
||||
shadetop="15"
|
||||
shadedown="-10">
|
||||
</ThemeWidgetColors>
|
||||
</wcol_pulldown>
|
||||
<wcol_menu_back>
|
||||
<ThemeWidgetColors outline="#0d0d0d"
|
||||
inner="#131312db"
|
||||
inner_sel="#2d2d2de6"
|
||||
item="#6a3859ff"
|
||||
text="#dddddd"
|
||||
text_sel="#dddddd"
|
||||
<ThemeWidgetColors outline="#000000"
|
||||
inner="#d2d2d2e7"
|
||||
inner_sel="#999999ff"
|
||||
item="#646464ff"
|
||||
text="#000000"
|
||||
text_sel="#ffffff"
|
||||
show_shaded="FALSE"
|
||||
shadetop="25"
|
||||
shadedown="-20">
|
||||
shadetop="-25"
|
||||
shadedown="25">
|
||||
</ThemeWidgetColors>
|
||||
</wcol_menu_back>
|
||||
<wcol_pie_menu>
|
||||
<ThemeWidgetColors outline="#0a0a0a"
|
||||
inner="#191919e6"
|
||||
inner_sel="#8c8c8cff"
|
||||
item="#6a3859e6"
|
||||
text="#a0a0a0"
|
||||
<ThemeWidgetColors outline="#262626"
|
||||
inner="#b4b4b4df"
|
||||
inner_sel="#646464b4"
|
||||
item="#b4b4b4ff"
|
||||
text="#000000"
|
||||
text_sel="#ffffff"
|
||||
show_shaded="TRUE"
|
||||
shadetop="10"
|
||||
@@ -167,167 +167,169 @@
|
||||
</wcol_pie_menu>
|
||||
<wcol_tooltip>
|
||||
<ThemeWidgetColors outline="#000000"
|
||||
inner="#191919e6"
|
||||
inner="#b0bcc4e6"
|
||||
inner_sel="#2d2d2de6"
|
||||
item="#646464ff"
|
||||
text="#ffffff"
|
||||
text_sel="#ff5d0d"
|
||||
text="#000000"
|
||||
text_sel="#ffffff"
|
||||
show_shaded="FALSE"
|
||||
shadetop="25"
|
||||
shadedown="-20">
|
||||
</ThemeWidgetColors>
|
||||
</wcol_tooltip>
|
||||
<wcol_menu_item>
|
||||
<ThemeWidgetColors outline="#0d0d0d"
|
||||
inner="#00000000"
|
||||
inner_sel="#6a3859ff"
|
||||
<ThemeWidgetColors outline="#000000"
|
||||
inner="#d2d2d200"
|
||||
inner_sel="#7f7f7fff"
|
||||
item="#ffffffff"
|
||||
text="#a4a4a4"
|
||||
text="#000000"
|
||||
text_sel="#ffffff"
|
||||
show_shaded="FALSE"
|
||||
shadetop="38"
|
||||
show_shaded="TRUE"
|
||||
shadetop="0"
|
||||
shadedown="0">
|
||||
</ThemeWidgetColors>
|
||||
</wcol_menu_item>
|
||||
<wcol_scroll>
|
||||
<ThemeWidgetColors outline="#000000"
|
||||
inner="#000000b4"
|
||||
inner_sel="#646464c6"
|
||||
item="#2e2d2aff"
|
||||
text="#cbc3bb"
|
||||
<ThemeWidgetColors outline="#262626"
|
||||
inner="#b4b4b42e"
|
||||
inner_sel="#646464b4"
|
||||
item="#b4b4b4ff"
|
||||
text="#000000"
|
||||
text_sel="#ffffff"
|
||||
show_shaded="TRUE"
|
||||
shadetop="10"
|
||||
shadedown="-10">
|
||||
shadetop="0"
|
||||
shadedown="0">
|
||||
</ThemeWidgetColors>
|
||||
</wcol_scroll>
|
||||
<wcol_progress>
|
||||
<ThemeWidgetColors outline="#000000"
|
||||
inner="#00000000"
|
||||
inner_sel="#00000000"
|
||||
item="#00000000"
|
||||
text="#cbc3bb"
|
||||
inner="#bebebeff"
|
||||
inner_sel="#646464b4"
|
||||
item="#444444ff"
|
||||
text="#000000"
|
||||
text_sel="#ffffff"
|
||||
show_shaded="FALSE"
|
||||
show_shaded="TRUE"
|
||||
shadetop="0"
|
||||
shadedown="0">
|
||||
</ThemeWidgetColors>
|
||||
</wcol_progress>
|
||||
<wcol_list_item>
|
||||
<ThemeWidgetColors outline="#0d0d0d"
|
||||
<ThemeWidgetColors outline="#000000"
|
||||
inner="#00000000"
|
||||
inner_sel="#6a3859ff"
|
||||
item="#6a3859ff"
|
||||
text="#cbc3bb"
|
||||
inner_sel="#7f7f7fff"
|
||||
item="#5a5a5aff"
|
||||
text="#000000"
|
||||
text_sel="#ffffff"
|
||||
show_shaded="FALSE"
|
||||
shadetop="0"
|
||||
shadedown="1">
|
||||
shadedown="0">
|
||||
</ThemeWidgetColors>
|
||||
</wcol_list_item>
|
||||
<wcol_state>
|
||||
<ThemeWidgetStateColors inner_anim="#308d00"
|
||||
inner_anim_sel="#a7ff07"
|
||||
inner_key="#105874"
|
||||
inner_key_sel="#19b6ee"
|
||||
inner_driven="#862074"
|
||||
inner_driven_sel="#862074"
|
||||
blend="0.1">
|
||||
<ThemeWidgetStateColors inner_anim="#73be4c"
|
||||
inner_anim_sel="#5aa633"
|
||||
inner_key="#f0eb64"
|
||||
inner_key_sel="#d7d34b"
|
||||
inner_driven="#b400ff"
|
||||
inner_driven_sel="#9900e6"
|
||||
blend="0.5">
|
||||
</ThemeWidgetStateColors>
|
||||
</wcol_state>
|
||||
</ThemeUserInterface>
|
||||
</user_interface>
|
||||
<view_3d>
|
||||
<ThemeView3D grid="#3c3b37"
|
||||
wire="#93237f"
|
||||
wire_edit="#93237f"
|
||||
<ThemeView3D grid="#4c4c4c"
|
||||
clipping_border_3d="#313131ff"
|
||||
wire="#000000"
|
||||
wire_edit="#000000"
|
||||
gp_vertex="#000000"
|
||||
gp_vertex_select="#ff8500"
|
||||
gp_vertex_size="3"
|
||||
lamp="#ffffff34"
|
||||
speaker="#93237f"
|
||||
camera="#159dce"
|
||||
view_overlay="#000000"
|
||||
empty="#93237f"
|
||||
object_selected="#f15800"
|
||||
object_active="#f47421"
|
||||
object_grouped="#117211"
|
||||
object_grouped_active="#65d665"
|
||||
transform="#ffffff"
|
||||
vertex="#c96cb8"
|
||||
vertex_select="#f47421"
|
||||
vertex_size="2"
|
||||
text_grease_pencil="#b5e61d"
|
||||
object_selected="#dcaedc"
|
||||
object_active="#ff88ff"
|
||||
object_grouped="#083008"
|
||||
object_grouped_active="#55bb55"
|
||||
text_keyframe="#ddd700"
|
||||
camera="#000000"
|
||||
empty="#000000"
|
||||
lamp="#00000028"
|
||||
speaker="#000000"
|
||||
vertex="#000000"
|
||||
vertex_select="#ff8500"
|
||||
vertex_size="3"
|
||||
vertex_bevel="#00a5ff"
|
||||
vertex_unreferenced="#000000"
|
||||
edge_select="#f47421"
|
||||
edge_seam="#db4100"
|
||||
edge_sharp="#ff4c00"
|
||||
edge_crease="#ce33b8"
|
||||
edge_select="#ffa000"
|
||||
edge_seam="#db2512"
|
||||
edge_sharp="#00abc0"
|
||||
edge_crease="#cc0099"
|
||||
edge_bevel="#00a5ff"
|
||||
edge_facesel="#4b4b4b"
|
||||
freestyle_edge_mark="#7fff7f"
|
||||
face="#75757512"
|
||||
face_select="#f474213c"
|
||||
face_dot="#f47421"
|
||||
facedot_size="3"
|
||||
face="#00000000"
|
||||
face_select="#ff85003c"
|
||||
face_dot="#ff8a30"
|
||||
facedot_size="4"
|
||||
freestyle_face_mark="#7fff7f33"
|
||||
nurb_uline="#909000"
|
||||
nurb_vline="#862074"
|
||||
nurb_vline="#803060"
|
||||
nurb_sel_uline="#f0ff40"
|
||||
nurb_sel_vline="#d15d85"
|
||||
act_spline="#ee4000"
|
||||
handle_free="#a5ca00"
|
||||
handle_auto="#00c59a"
|
||||
nurb_sel_vline="#f090a0"
|
||||
act_spline="#db2512"
|
||||
handle_free="#000000"
|
||||
handle_auto="#909000"
|
||||
handle_vect="#409030"
|
||||
handle_sel_vect="#82c036"
|
||||
handle_align="#93237f"
|
||||
handle_sel_free="#f47421"
|
||||
handle_sel_auto="#f47421"
|
||||
handle_sel_align="#f47421"
|
||||
handle_sel_vect="#40c030"
|
||||
handle_align="#803060"
|
||||
handle_sel_free="#000000"
|
||||
handle_sel_auto="#f0ff40"
|
||||
handle_sel_align="#f090a0"
|
||||
lastsel_point="#ffffff"
|
||||
extra_edge_len="#200000"
|
||||
extra_edge_angle="#202000"
|
||||
extra_face_angle="#002000"
|
||||
extra_face_area="#0059ee"
|
||||
extra_face_angle="#000080"
|
||||
extra_face_area="#002000"
|
||||
editmesh_active="#ffffff80"
|
||||
normal="#19b6ee"
|
||||
vertex_normal="#19b6ee"
|
||||
normal="#22dddd"
|
||||
vertex_normal="#2361dd"
|
||||
split_normal="#dd23dd"
|
||||
bone_solid="#c8c8c8"
|
||||
bone_pose="#50c8ff"
|
||||
bone_pose_active="#8cffff"
|
||||
frame_current="#60c040"
|
||||
outline_width="2"
|
||||
bone_solid="#c8c8c8"
|
||||
bundle_solid="#c8c8c8"
|
||||
camera_path="#7dbd00"
|
||||
skin_root="#000000"
|
||||
clipping_border_3d="#313131ff"
|
||||
text_keyframe="#ddd700"
|
||||
text_grease_pencil="#b5e61d"
|
||||
camera_path="#000000"
|
||||
skin_root="#b44d4d"
|
||||
view_overlay="#000000"
|
||||
transform="#ffffff"
|
||||
frame_current="#60c040"
|
||||
paint_curve_handle="#7fff7f7f"
|
||||
paint_curve_pivot="#ff7f7f7f">
|
||||
paint_curve_pivot="#ff7f7f7f"
|
||||
outline_width="1">
|
||||
<space>
|
||||
<ThemeSpaceGradient title="#9c9c9c"
|
||||
text="#9c9c9c"
|
||||
<ThemeSpaceGradient title="#000000"
|
||||
text="#000000"
|
||||
text_hi="#ffffff"
|
||||
header="#464541"
|
||||
header_text="#acacac"
|
||||
header="#b4b4b4"
|
||||
header_text="#000000"
|
||||
header_text_hi="#ffffff"
|
||||
button="#3c3b3757"
|
||||
button_title="#9c9c9c"
|
||||
button_text="#9c9c9c"
|
||||
button="#b4b4b457"
|
||||
button_title="#121227"
|
||||
button_text="#000000"
|
||||
button_text_hi="#ffffff"
|
||||
tab_active="#3c3b37"
|
||||
tab_inactive="#333333"
|
||||
tab_back="#2e2e2eff"
|
||||
tab_outline="#000000">
|
||||
tab_active="#b4b4b4"
|
||||
tab_inactive="#999999"
|
||||
tab_back="#757575ff"
|
||||
tab_outline="#3c3c3c">
|
||||
<gradients>
|
||||
<ThemeGradientColors show_grad="FALSE"
|
||||
gradient="#000000"
|
||||
high_gradient="#131311">
|
||||
<ThemeGradientColors show_grad="TRUE"
|
||||
gradient="#a3a3a3"
|
||||
high_gradient="#7e7e7e">
|
||||
</ThemeGradientColors>
|
||||
</gradients>
|
||||
<panelcolors>
|
||||
<ThemePanelColors header="#00000000"
|
||||
back="#72727280"
|
||||
<ThemePanelColors header="#ffffff19"
|
||||
back="#7aa5a32e"
|
||||
show_header="TRUE"
|
||||
show_back="FALSE">
|
||||
</ThemePanelColors>
|
||||
@@ -337,50 +339,51 @@
|
||||
</ThemeView3D>
|
||||
</view_3d>
|
||||
<graph_editor>
|
||||
<ThemeGraphEditor grid="#3c3b37"
|
||||
frame_current="#f58032"
|
||||
window_sliders="#95948f"
|
||||
<ThemeGraphEditor grid="#818181"
|
||||
frame_current="#60c040"
|
||||
window_sliders="#969696"
|
||||
channels_region="#707070"
|
||||
dopesheet_channel="#695c6e"
|
||||
dopesheet_channel="#52606e"
|
||||
dopesheet_subchannel="#7c8996"
|
||||
channel_group="#4f6549"
|
||||
active_channels_group="#87b17d"
|
||||
vertex="#ffffff"
|
||||
vertex_select="#f49600"
|
||||
vertex_size="4"
|
||||
vertex="#000000"
|
||||
vertex_select="#ff8500"
|
||||
vertex_size="3"
|
||||
vertex_bevel="#000000"
|
||||
vertex_unreferenced="#000000"
|
||||
handle_free="#a5ca00"
|
||||
handle_auto="#00c59a"
|
||||
handle_free="#000000"
|
||||
handle_auto="#909000"
|
||||
handle_vect="#409030"
|
||||
handle_sel_vect="#40c030"
|
||||
handle_align="#93237f"
|
||||
handle_sel_free="#f49600"
|
||||
handle_sel_auto="#f49600"
|
||||
handle_sel_align="#f49600"
|
||||
handle_auto_clamped="#03aa60"
|
||||
handle_sel_auto_clamped="#f49600"
|
||||
lastsel_point="#fafafa"
|
||||
handle_vertex="#bbbbbb"
|
||||
handle_vertex_select="#f49600"
|
||||
handle_vertex_size="4">
|
||||
handle_align="#803060"
|
||||
handle_sel_free="#000000"
|
||||
handle_sel_auto="#f0ff40"
|
||||
handle_sel_align="#f090a0"
|
||||
handle_auto_clamped="#000000"
|
||||
handle_sel_auto_clamped="#000000"
|
||||
lastsel_point="#ffffff"
|
||||
handle_vertex="#000000"
|
||||
handle_vertex_select="#ff8500"
|
||||
handle_vertex_size="3">
|
||||
<space>
|
||||
<ThemeSpaceGeneric back="#131311"
|
||||
title="#9c9c9c"
|
||||
text="#e9e9e9"
|
||||
<ThemeSpaceGeneric back="#979797"
|
||||
title="#000000"
|
||||
text="#000000"
|
||||
text_hi="#ffffff"
|
||||
header="#464541"
|
||||
header_text="#acacac"
|
||||
header="#b4b4b4"
|
||||
header_text="#000000"
|
||||
header_text_hi="#ffffff"
|
||||
button="#3c3b37ff"
|
||||
button_title="#9c9c9c"
|
||||
button_text="#9c9c9c"
|
||||
button="#b4b4b457"
|
||||
button_title="#000000"
|
||||
button_text="#000000"
|
||||
button_text_hi="#ffffff"
|
||||
tab_active="#3c3b37"
|
||||
tab_inactive="#333333"
|
||||
tab_back="#2e2e2eff"
|
||||
tab_outline="#000000">
|
||||
tab_active="#b4b4b4"
|
||||
tab_inactive="#999999"
|
||||
tab_back="#757575ff"
|
||||
tab_outline="#3c3c3c">
|
||||
<panelcolors>
|
||||
<ThemePanelColors header="#00000000"
|
||||
<ThemePanelColors header="#00000019"
|
||||
back="#72727280"
|
||||
show_header="TRUE"
|
||||
show_back="FALSE">
|
||||
@@ -389,34 +392,34 @@
|
||||
</ThemeSpaceGeneric>
|
||||
</space>
|
||||
<space_list>
|
||||
<ThemeSpaceListGeneric list="#3c3b37"
|
||||
list_title="#ffffff"
|
||||
list_text="#e2e2e2"
|
||||
list_text_hi="#f47421">
|
||||
<ThemeSpaceListGeneric list="#b4b4b4"
|
||||
list_title="#000000"
|
||||
list_text="#000000"
|
||||
list_text_hi="#ffffff">
|
||||
</ThemeSpaceListGeneric>
|
||||
</space_list>
|
||||
</ThemeGraphEditor>
|
||||
</graph_editor>
|
||||
<file_browser>
|
||||
<ThemeFileBrowser selected_file="#6b395a">
|
||||
<ThemeFileBrowser selected_file="#a0a0d0">
|
||||
<space>
|
||||
<ThemeSpaceGeneric back="#131311"
|
||||
<ThemeSpaceGeneric back="#808080"
|
||||
title="#000000"
|
||||
text="#b2b2b1"
|
||||
text="#000000"
|
||||
text_hi="#0f0f0f"
|
||||
header="#464541"
|
||||
header_text="#acacac"
|
||||
header="#b4b4b4"
|
||||
header_text="#000000"
|
||||
header_text_hi="#ffffff"
|
||||
button="#727272ff"
|
||||
button="#b4b4b4ff"
|
||||
button_title="#000000"
|
||||
button_text="#000000"
|
||||
button_text_hi="#ffffff"
|
||||
tab_active="#3c3b37"
|
||||
tab_inactive="#333333"
|
||||
tab_back="#2e2e2eff"
|
||||
tab_outline="#000000">
|
||||
tab_active="#b4b4b4"
|
||||
tab_inactive="#999999"
|
||||
tab_back="#757575ff"
|
||||
tab_outline="#3c3c3c">
|
||||
<panelcolors>
|
||||
<ThemePanelColors header="#00000000"
|
||||
<ThemePanelColors header="#00000019"
|
||||
back="#72727280"
|
||||
show_header="TRUE"
|
||||
show_back="FALSE">
|
||||
@@ -427,12 +430,12 @@
|
||||
</ThemeFileBrowser>
|
||||
</file_browser>
|
||||
<nla_editor>
|
||||
<ThemeNLAEditor grid="#5c5c52"
|
||||
<ThemeNLAEditor grid="#5e5e5e"
|
||||
view_sliders="#969696"
|
||||
active_action="#cc701a66"
|
||||
active_action_unset="#9987614d"
|
||||
strips="#0c0a0a"
|
||||
strips_selected="#6b395a"
|
||||
strips_selected="#ff8c00"
|
||||
transition_strips="#1c2630"
|
||||
transition_strips_selected="#2e75db"
|
||||
meta_strips="#332642"
|
||||
@@ -443,25 +446,25 @@
|
||||
tweak_duplicate="#d90000"
|
||||
keyframe_border="#000000ff"
|
||||
keyframe_border_selected="#000000ff"
|
||||
frame_current="#f58032">
|
||||
frame_current="#60c040">
|
||||
<space>
|
||||
<ThemeSpaceGeneric back="#131311"
|
||||
<ThemeSpaceGeneric back="#757575"
|
||||
title="#000000"
|
||||
text="#000000"
|
||||
text_hi="#ffffff"
|
||||
header="#464541"
|
||||
header_text="#acacac"
|
||||
header="#b4b4b4"
|
||||
header_text="#000000"
|
||||
header_text_hi="#ffffff"
|
||||
button="#3c3b37ff"
|
||||
button="#b4b4b4ff"
|
||||
button_title="#000000"
|
||||
button_text="#000000"
|
||||
button_text_hi="#ffffff"
|
||||
tab_active="#3c3b37"
|
||||
tab_inactive="#333333"
|
||||
tab_back="#2e2e2eff"
|
||||
tab_outline="#000000">
|
||||
tab_active="#b4b4b4"
|
||||
tab_inactive="#999999"
|
||||
tab_back="#757575ff"
|
||||
tab_outline="#3c3c3c">
|
||||
<panelcolors>
|
||||
<ThemePanelColors header="#00000000"
|
||||
<ThemePanelColors header="#00000019"
|
||||
back="#72727280"
|
||||
show_header="TRUE"
|
||||
show_back="FALSE">
|
||||
@@ -470,7 +473,7 @@
|
||||
</ThemeSpaceGeneric>
|
||||
</space>
|
||||
<space_list>
|
||||
<ThemeSpaceListGeneric list="#3c3b37"
|
||||
<ThemeSpaceListGeneric list="#b4b4b4"
|
||||
list_title="#000000"
|
||||
list_text="#000000"
|
||||
list_text_hi="#ffffff">
|
||||
@@ -479,18 +482,18 @@
|
||||
</ThemeNLAEditor>
|
||||
</nla_editor>
|
||||
<dopesheet_editor>
|
||||
<ThemeDopeSheet grid="#525252"
|
||||
frame_current="#f58032"
|
||||
<ThemeDopeSheet grid="#858585"
|
||||
frame_current="#60c040"
|
||||
value_sliders="#000000"
|
||||
view_sliders="#9c9c9c"
|
||||
dopesheet_channel="#64486e"
|
||||
dopesheet_subchannel="#877096"
|
||||
channels="#9c9c9c"
|
||||
channels_selected="#6592f5"
|
||||
view_sliders="#969696"
|
||||
dopesheet_channel="#52606e"
|
||||
dopesheet_subchannel="#7c8996"
|
||||
channels="#707070"
|
||||
channels_selected="#60c040"
|
||||
channel_group="#4f6549"
|
||||
active_channels_group="#a2b15c"
|
||||
active_channels_group="#87b17d"
|
||||
long_key="#0c0a0a"
|
||||
long_key_selected="#f47421"
|
||||
long_key_selected="#ff8c00"
|
||||
keyframe="#e8e8e8"
|
||||
keyframe_selected="#ffbe32"
|
||||
keyframe_extreme="#e8b3cc"
|
||||
@@ -501,25 +504,26 @@
|
||||
keyframe_jitter_selected="#61c042"
|
||||
keyframe_border="#000000ff"
|
||||
keyframe_border_selected="#000000ff"
|
||||
keyframe_scale_factor="1"
|
||||
summary="#cc701a66">
|
||||
<space>
|
||||
<ThemeSpaceGeneric back="#131311"
|
||||
title="#9c9c9c"
|
||||
text="#e7e7e7"
|
||||
<ThemeSpaceGeneric back="#a0a0a0"
|
||||
title="#000000"
|
||||
text="#000000"
|
||||
text_hi="#ffffff"
|
||||
header="#464541"
|
||||
header_text="#cacaca"
|
||||
header="#b4b4b4"
|
||||
header_text="#000000"
|
||||
header_text_hi="#ffffff"
|
||||
button="#3c3b37ff"
|
||||
button_title="#9c9c9c"
|
||||
button_text="#9c9c9c"
|
||||
button="#b4b4b4ff"
|
||||
button_title="#000000"
|
||||
button_text="#000000"
|
||||
button_text_hi="#ffffff"
|
||||
tab_active="#3c3b37"
|
||||
tab_inactive="#333333"
|
||||
tab_back="#2e2e2eff"
|
||||
tab_outline="#000000">
|
||||
tab_active="#b4b4b4"
|
||||
tab_inactive="#999999"
|
||||
tab_back="#757575ff"
|
||||
tab_outline="#3c3c3c">
|
||||
<panelcolors>
|
||||
<ThemePanelColors header="#00000000"
|
||||
<ThemePanelColors header="#00000019"
|
||||
back="#72727280"
|
||||
show_header="TRUE"
|
||||
show_back="FALSE">
|
||||
@@ -528,10 +532,10 @@
|
||||
</ThemeSpaceGeneric>
|
||||
</space>
|
||||
<space_list>
|
||||
<ThemeSpaceListGeneric list="#3c3b37"
|
||||
list_title="#ffffff"
|
||||
list_text="#e2e2e2"
|
||||
list_text_hi="#f47421">
|
||||
<ThemeSpaceListGeneric list="#b4b4b4"
|
||||
list_title="#000000"
|
||||
list_text="#000000"
|
||||
list_text_hi="#ffffff">
|
||||
</ThemeSpaceListGeneric>
|
||||
</space_list>
|
||||
</ThemeDopeSheet>
|
||||
@@ -541,18 +545,19 @@
|
||||
gp_vertex_select="#ff8500"
|
||||
gp_vertex_size="3"
|
||||
vertex="#000000"
|
||||
vertex_select="#f47421"
|
||||
vertex_select="#ff8500"
|
||||
vertex_size="3"
|
||||
vertex_bevel="#000000"
|
||||
vertex_unreferenced="#000000"
|
||||
face="#ffffff0a"
|
||||
face_select="#ff85003c"
|
||||
face_dot="#f47421"
|
||||
face_dot="#ff8500"
|
||||
facedot_size="3"
|
||||
freestyle_face_mark="#7fff7f33"
|
||||
editmesh_active="#ffffff80"
|
||||
wire_edit="#c0c0c0"
|
||||
edge_select="#ff8500"
|
||||
scope_back="#3c3b37ff"
|
||||
scope_back="#b4b4b4ff"
|
||||
preview_stitch_face="#1242b026"
|
||||
preview_stitch_edge="#ff8500b2"
|
||||
preview_stitch_vert="#ff85007f"
|
||||
@@ -578,23 +583,23 @@
|
||||
paint_curve_handle="#7fff7f7f"
|
||||
paint_curve_pivot="#ff7f7f7f">
|
||||
<space>
|
||||
<ThemeSpaceGeneric back="#131311"
|
||||
<ThemeSpaceGeneric back="#353535"
|
||||
title="#000000"
|
||||
text="#000000"
|
||||
text_hi="#ffffff"
|
||||
header="#464541"
|
||||
header_text="#acacac"
|
||||
header="#b4b4b4"
|
||||
header_text="#000000"
|
||||
header_text_hi="#ffffff"
|
||||
button="#3c3b37ff"
|
||||
button_title="#b1b1b1"
|
||||
button_text="#b9b9b9"
|
||||
button="#b4b4b4ff"
|
||||
button_title="#000000"
|
||||
button_text="#000000"
|
||||
button_text_hi="#ffffff"
|
||||
tab_active="#3c3b37"
|
||||
tab_inactive="#333333"
|
||||
tab_back="#2e2e2eff"
|
||||
tab_outline="#000000">
|
||||
tab_active="#b4b4b4"
|
||||
tab_inactive="#999999"
|
||||
tab_back="#757575ff"
|
||||
tab_outline="#3c3c3c">
|
||||
<panelcolors>
|
||||
<ThemePanelColors header="#00000000"
|
||||
<ThemePanelColors header="#00000019"
|
||||
back="#72727280"
|
||||
show_header="TRUE"
|
||||
show_back="FALSE">
|
||||
@@ -608,7 +613,7 @@
|
||||
<ThemeSequenceEditor gp_vertex="#000000"
|
||||
gp_vertex_select="#ff8500"
|
||||
gp_vertex_size="3"
|
||||
grid="#282828"
|
||||
grid="#404040"
|
||||
window_sliders="#a0a0a0"
|
||||
movie_strip="#516987"
|
||||
movieclip_strip="#20208f"
|
||||
@@ -619,30 +624,30 @@
|
||||
transition_strip="#a25f6f"
|
||||
meta_strip="#6d9183"
|
||||
text_strip="#a29700"
|
||||
frame_current="#c06e11"
|
||||
keyframe="#f47421"
|
||||
frame_current="#60c040"
|
||||
keyframe="#ff8500"
|
||||
draw_action="#50c8ff"
|
||||
preview_back="#000000"
|
||||
metadatabg="#000000"
|
||||
metadatatext="#ffffff">
|
||||
<space>
|
||||
<ThemeSpaceGeneric back="#191919"
|
||||
title="#acacac"
|
||||
text="#acacac"
|
||||
<ThemeSpaceGeneric back="#949494"
|
||||
title="#000000"
|
||||
text="#000000"
|
||||
text_hi="#ffffff"
|
||||
header="#464541"
|
||||
header_text="#acacac"
|
||||
header="#b4b4b4"
|
||||
header_text="#000000"
|
||||
header_text_hi="#ffffff"
|
||||
button="#3c3b3742"
|
||||
button_title="#acacac"
|
||||
button_text="#acacac"
|
||||
button="#b4b4b442"
|
||||
button_title="#000000"
|
||||
button_text="#000000"
|
||||
button_text_hi="#ffffff"
|
||||
tab_active="#3c3b37"
|
||||
tab_inactive="#333333"
|
||||
tab_back="#2e2e2eff"
|
||||
tab_outline="#000000">
|
||||
tab_active="#b4b4b4"
|
||||
tab_inactive="#999999"
|
||||
tab_back="#757575ff"
|
||||
tab_outline="#3c3c3c">
|
||||
<panelcolors>
|
||||
<ThemePanelColors header="#00000000"
|
||||
<ThemePanelColors header="#00000019"
|
||||
back="#72727280"
|
||||
show_header="TRUE"
|
||||
show_back="FALSE">
|
||||
@@ -655,23 +660,23 @@
|
||||
<properties>
|
||||
<ThemeProperties>
|
||||
<space>
|
||||
<ThemeSpaceGeneric back="#3c3b37"
|
||||
title="#acacac"
|
||||
text="#acacac"
|
||||
<ThemeSpaceGeneric back="#b4b4b4"
|
||||
title="#000000"
|
||||
text="#000000"
|
||||
text_hi="#ffffff"
|
||||
header="#464541"
|
||||
header_text="#acacac"
|
||||
header="#b4b4b4"
|
||||
header_text="#000000"
|
||||
header_text_hi="#ffffff"
|
||||
button="#3c3b37ff"
|
||||
button="#b4b4b4ff"
|
||||
button_title="#000000"
|
||||
button_text="#000000"
|
||||
button_text_hi="#ffffff"
|
||||
tab_active="#3c3b37"
|
||||
tab_inactive="#333333"
|
||||
tab_back="#2e2e2eff"
|
||||
tab_outline="#000000">
|
||||
tab_active="#b4b4b4"
|
||||
tab_inactive="#999999"
|
||||
tab_back="#757575ff"
|
||||
tab_outline="#3c3c3c">
|
||||
<panelcolors>
|
||||
<ThemePanelColors header="#00000000"
|
||||
<ThemePanelColors header="#00000019"
|
||||
back="#72727280"
|
||||
show_header="TRUE"
|
||||
show_back="FALSE">
|
||||
@@ -682,35 +687,35 @@
|
||||
</ThemeProperties>
|
||||
</properties>
|
||||
<text_editor>
|
||||
<ThemeTextEditor line_numbers_background="#3c3b37"
|
||||
selected_text="#641f44"
|
||||
cursor="#f47421"
|
||||
syntax_builtin="#d6ff01"
|
||||
<ThemeTextEditor line_numbers_background="#818181"
|
||||
selected_text="#c67777"
|
||||
cursor="#ff0000"
|
||||
syntax_builtin="#800050"
|
||||
syntax_symbols="#4c4c4c"
|
||||
syntax_special="#33a500"
|
||||
syntax_preprocessor="#be00ff"
|
||||
syntax_special="#5f5f00"
|
||||
syntax_preprocessor="#32008c"
|
||||
syntax_reserved="#8c3c00"
|
||||
syntax_comment="#249d60"
|
||||
syntax_string="#6e00ff"
|
||||
syntax_numbers="#972144">
|
||||
syntax_comment="#006432"
|
||||
syntax_string="#640000"
|
||||
syntax_numbers="#0000c8">
|
||||
<space>
|
||||
<ThemeSpaceGeneric back="#131311"
|
||||
<ThemeSpaceGeneric back="#999999"
|
||||
title="#000000"
|
||||
text="#19b6ee"
|
||||
text="#000000"
|
||||
text_hi="#ffffff"
|
||||
header="#464541"
|
||||
header_text="#acacac"
|
||||
header="#b4b4b4"
|
||||
header_text="#000000"
|
||||
header_text_hi="#ffffff"
|
||||
button="#191919ff"
|
||||
button_title="#64645e"
|
||||
button_text="#95948f"
|
||||
button="#b4b4b4ff"
|
||||
button_title="#000000"
|
||||
button_text="#000000"
|
||||
button_text_hi="#ffffff"
|
||||
tab_active="#3c3b37"
|
||||
tab_inactive="#333333"
|
||||
tab_back="#2e2e2eff"
|
||||
tab_outline="#000000">
|
||||
tab_active="#b4b4b4"
|
||||
tab_inactive="#999999"
|
||||
tab_back="#757575ff"
|
||||
tab_outline="#3c3c3c">
|
||||
<panelcolors>
|
||||
<ThemePanelColors header="#00000000"
|
||||
<ThemePanelColors header="#00000019"
|
||||
back="#72727280"
|
||||
show_header="TRUE"
|
||||
show_back="FALSE">
|
||||
@@ -721,28 +726,28 @@
|
||||
</ThemeTextEditor>
|
||||
</text_editor>
|
||||
<timeline>
|
||||
<ThemeTimeline grid="#272727"
|
||||
frame_current="#f47421"
|
||||
<ThemeTimeline grid="#5b5b5b"
|
||||
frame_current="#60c040"
|
||||
time_keyframe="#ddd700"
|
||||
time_grease_pencil="#b5e61d">
|
||||
<space>
|
||||
<ThemeSpaceGeneric back="#131311"
|
||||
<ThemeSpaceGeneric back="#999999"
|
||||
title="#000000"
|
||||
text="#9c9c9c"
|
||||
text="#000000"
|
||||
text_hi="#ffffff"
|
||||
header="#464541"
|
||||
header_text="#acacac"
|
||||
header="#b4b4b4"
|
||||
header_text="#000000"
|
||||
header_text_hi="#ffffff"
|
||||
button="#3c3b37ff"
|
||||
button_title="#9c9c9c"
|
||||
button_text="#9c9c9c"
|
||||
button="#b4b4b4ff"
|
||||
button_title="#000000"
|
||||
button_text="#000000"
|
||||
button_text_hi="#ffffff"
|
||||
tab_active="#3c3b37"
|
||||
tab_inactive="#333333"
|
||||
tab_back="#2e2e2eff"
|
||||
tab_outline="#000000">
|
||||
tab_active="#b4b4b4"
|
||||
tab_inactive="#999999"
|
||||
tab_back="#757575ff"
|
||||
tab_outline="#3c3c3c">
|
||||
<panelcolors>
|
||||
<ThemePanelColors header="#00000000"
|
||||
<ThemePanelColors header="#00000019"
|
||||
back="#72727280"
|
||||
show_header="TRUE"
|
||||
show_back="FALSE">
|
||||
@@ -758,46 +763,46 @@
|
||||
gp_vertex_size="3"
|
||||
node_selected="#ffffff"
|
||||
node_active="#ffffff"
|
||||
wire="#f45b00"
|
||||
wire="#000000"
|
||||
wire_inner="#737373"
|
||||
wire_select="#f4b696"
|
||||
wire_select="#ffffff"
|
||||
selected_text="#7f7070"
|
||||
node_backdrop="#52524ed1"
|
||||
converter_node="#93be00"
|
||||
color_node="#000000"
|
||||
group_node="#19b6ee"
|
||||
node_backdrop="#9b9b9ba0"
|
||||
converter_node="#c6bfbf"
|
||||
color_node="#457b95"
|
||||
group_node="#69756e"
|
||||
group_socket_node="#dfca35"
|
||||
frame_node="#9a9b9ba0"
|
||||
matte_node="#977474"
|
||||
distor_node="#749797"
|
||||
noodle_curving="5"
|
||||
input_node="#f40051"
|
||||
output_node="#f40051"
|
||||
filter_node="#000000"
|
||||
vector_node="#000000"
|
||||
texture_node="#000000"
|
||||
shader_node="#000000"
|
||||
script_node="#000000"
|
||||
pattern_node="#000000"
|
||||
layout_node="#000000">
|
||||
input_node="#646464"
|
||||
output_node="#646464"
|
||||
filter_node="#6c696f"
|
||||
vector_node="#6f578c"
|
||||
texture_node="#8395bf"
|
||||
shader_node="#4f9370"
|
||||
script_node="#6c696f"
|
||||
pattern_node="#6c696f"
|
||||
layout_node="#6e6f69">
|
||||
<space>
|
||||
<ThemeSpaceGeneric back="#29001b"
|
||||
<ThemeSpaceGeneric back="#757575"
|
||||
title="#000000"
|
||||
text="#eeedeb"
|
||||
text_hi="#cbcbcb"
|
||||
header="#464541"
|
||||
header_text="#acacac"
|
||||
text="#000000"
|
||||
text_hi="#ffffff"
|
||||
header="#b4b4b4"
|
||||
header_text="#000000"
|
||||
header_text_hi="#ffffff"
|
||||
button="#3534302f"
|
||||
button_title="#acacac"
|
||||
button_text="#acacac"
|
||||
button="#b4b4b42f"
|
||||
button_title="#000000"
|
||||
button_text="#000000"
|
||||
button_text_hi="#ffffff"
|
||||
tab_active="#3c3b37"
|
||||
tab_inactive="#333333"
|
||||
tab_back="#2e2e2eff"
|
||||
tab_outline="#000000">
|
||||
tab_active="#b4b4b4"
|
||||
tab_inactive="#999999"
|
||||
tab_back="#757575ff"
|
||||
tab_outline="#3c3c3c">
|
||||
<panelcolors>
|
||||
<ThemePanelColors header="#00000000"
|
||||
<ThemePanelColors header="#00000019"
|
||||
back="#72727280"
|
||||
show_header="TRUE"
|
||||
show_back="FALSE">
|
||||
@@ -806,9 +811,9 @@
|
||||
</ThemeSpaceGeneric>
|
||||
</space>
|
||||
<space_list>
|
||||
<ThemeSpaceListGeneric list="#3c3b37"
|
||||
list_title="#acacac"
|
||||
list_text="#acacac"
|
||||
<ThemeSpaceListGeneric list="#a5a5a5"
|
||||
list_title="#000000"
|
||||
list_text="#000000"
|
||||
list_text_hi="#ffffff">
|
||||
</ThemeSpaceListGeneric>
|
||||
</space_list>
|
||||
@@ -817,23 +822,23 @@
|
||||
<logic_editor>
|
||||
<ThemeLogicEditor>
|
||||
<space>
|
||||
<ThemeSpaceGeneric back="#29001b"
|
||||
<ThemeSpaceGeneric back="#b4b4b4"
|
||||
title="#000000"
|
||||
text="#acacac"
|
||||
text="#000000"
|
||||
text_hi="#ffffff"
|
||||
header="#464541"
|
||||
header_text="#acacac"
|
||||
header="#b4b4b4"
|
||||
header_text="#000000"
|
||||
header_text_hi="#ffffff"
|
||||
button="#353430ff"
|
||||
button_title="#7d7d7d"
|
||||
button_text="#acacac"
|
||||
button="#b4b4b4ff"
|
||||
button_title="#000000"
|
||||
button_text="#000000"
|
||||
button_text_hi="#ffffff"
|
||||
tab_active="#3c3b37"
|
||||
tab_inactive="#333333"
|
||||
tab_back="#2e2e2eff"
|
||||
tab_outline="#000000">
|
||||
tab_active="#b4b4b4"
|
||||
tab_inactive="#999999"
|
||||
tab_back="#757575ff"
|
||||
tab_outline="#3c3c3c">
|
||||
<panelcolors>
|
||||
<ThemePanelColors header="#00000000"
|
||||
<ThemePanelColors header="#00000019"
|
||||
back="#72727280"
|
||||
show_header="TRUE"
|
||||
show_back="FALSE">
|
||||
@@ -845,25 +850,25 @@
|
||||
</logic_editor>
|
||||
<outliner>
|
||||
<ThemeOutliner match="#337f33"
|
||||
selected_highlight="#6a3859">
|
||||
selected_highlight="#82878c">
|
||||
<space>
|
||||
<ThemeSpaceGeneric back="#3c3b37"
|
||||
<ThemeSpaceGeneric back="#999999"
|
||||
title="#000000"
|
||||
text="#cccccc"
|
||||
text_hi="#f47421"
|
||||
header="#464541"
|
||||
header_text="#acacac"
|
||||
text="#000000"
|
||||
text_hi="#ffffff"
|
||||
header="#b4b4b4"
|
||||
header_text="#000000"
|
||||
header_text_hi="#ffffff"
|
||||
button="#3c3b37ff"
|
||||
button="#b4b4b4ff"
|
||||
button_title="#000000"
|
||||
button_text="#000000"
|
||||
button_text_hi="#f47421"
|
||||
tab_active="#3c3b37"
|
||||
tab_inactive="#333333"
|
||||
tab_back="#2e2e2eff"
|
||||
tab_outline="#000000">
|
||||
button_text_hi="#ffffff"
|
||||
tab_active="#b4b4b4"
|
||||
tab_inactive="#999999"
|
||||
tab_back="#757575ff"
|
||||
tab_outline="#3c3c3c">
|
||||
<panelcolors>
|
||||
<ThemePanelColors header="#00000000"
|
||||
<ThemePanelColors header="#00000019"
|
||||
back="#72727280"
|
||||
show_header="TRUE"
|
||||
show_back="FALSE">
|
||||
@@ -885,23 +890,23 @@
|
||||
info_debug="#c4c4c4"
|
||||
info_debug_text="#000000">
|
||||
<space>
|
||||
<ThemeSpaceGeneric back="#3c3b37"
|
||||
title="#eeedeb"
|
||||
text="#eeedeb"
|
||||
<ThemeSpaceGeneric back="#b4b4b4"
|
||||
title="#000000"
|
||||
text="#000000"
|
||||
text_hi="#ffffff"
|
||||
header="#464541"
|
||||
header_text="#ffffff"
|
||||
header="#b4b4b4"
|
||||
header_text="#000000"
|
||||
header_text_hi="#ffffff"
|
||||
button="#3c3b37ff"
|
||||
button_title="#eeedeb"
|
||||
button_text="#eeedeb"
|
||||
button="#b4b4b4ff"
|
||||
button_title="#000000"
|
||||
button_text="#000000"
|
||||
button_text_hi="#ffffff"
|
||||
tab_active="#3c3b37"
|
||||
tab_inactive="#333333"
|
||||
tab_back="#2e2e2eff"
|
||||
tab_outline="#000000">
|
||||
tab_active="#b4b4b4"
|
||||
tab_inactive="#999999"
|
||||
tab_back="#757575ff"
|
||||
tab_outline="#3c3c3c">
|
||||
<panelcolors>
|
||||
<ThemePanelColors header="#00000000"
|
||||
<ThemePanelColors header="#00000019"
|
||||
back="#72727280"
|
||||
show_header="TRUE"
|
||||
show_back="FALSE">
|
||||
@@ -914,23 +919,23 @@
|
||||
<user_preferences>
|
||||
<ThemeUserPreferences>
|
||||
<space>
|
||||
<ThemeSpaceGeneric back="#3c3b37"
|
||||
<ThemeSpaceGeneric back="#999999"
|
||||
title="#000000"
|
||||
text="#ccccc8"
|
||||
text="#000000"
|
||||
text_hi="#ffffff"
|
||||
header="#3c3b37"
|
||||
header_text="#d3d2cd"
|
||||
header="#b4b4b4"
|
||||
header_text="#000000"
|
||||
header_text_hi="#ffffff"
|
||||
button="#696965ff"
|
||||
button="#b4b4b4ff"
|
||||
button_title="#000000"
|
||||
button_text="#000000"
|
||||
button_text_hi="#ffffff"
|
||||
tab_active="#3c3b37"
|
||||
tab_inactive="#333333"
|
||||
tab_back="#2e2e2eff"
|
||||
tab_outline="#000000">
|
||||
tab_active="#b4b4b4"
|
||||
tab_inactive="#999999"
|
||||
tab_back="#757575ff"
|
||||
tab_outline="#3c3c3c">
|
||||
<panelcolors>
|
||||
<ThemePanelColors header="#00000000"
|
||||
<ThemePanelColors header="#00000019"
|
||||
back="#72727280"
|
||||
show_header="TRUE"
|
||||
show_back="FALSE">
|
||||
@@ -941,30 +946,30 @@
|
||||
</ThemeUserPreferences>
|
||||
</user_preferences>
|
||||
<console>
|
||||
<ThemeConsole line_output="#97f500"
|
||||
line_input="#19b6ee"
|
||||
line_info="#f47421"
|
||||
line_error="#ff0000"
|
||||
cursor="#f47421"
|
||||
select="#641f4480">
|
||||
<ThemeConsole line_output="#000000"
|
||||
line_input="#ffffff"
|
||||
line_info="#00aa00"
|
||||
line_error="#dc6060"
|
||||
cursor="#dc6060"
|
||||
select="#c6777799">
|
||||
<space>
|
||||
<ThemeSpaceGeneric back="#131311"
|
||||
<ThemeSpaceGeneric back="#b4b4b4"
|
||||
title="#000000"
|
||||
text="#000000"
|
||||
text_hi="#ffffff"
|
||||
header="#464541"
|
||||
header_text="#acacac"
|
||||
header="#b4b4b4"
|
||||
header_text="#000000"
|
||||
header_text_hi="#ffffff"
|
||||
button="#3c3b37ff"
|
||||
button="#b4b4b4ff"
|
||||
button_title="#000000"
|
||||
button_text="#000000"
|
||||
button_text_hi="#ffffff"
|
||||
tab_active="#3c3b37"
|
||||
tab_inactive="#333333"
|
||||
tab_back="#2e2e2eff"
|
||||
tab_outline="#000000">
|
||||
tab_active="#b4b4b4"
|
||||
tab_inactive="#999999"
|
||||
tab_back="#757575ff"
|
||||
tab_outline="#3c3c3c">
|
||||
<panelcolors>
|
||||
<ThemePanelColors header="#00000000"
|
||||
<ThemePanelColors header="#00000019"
|
||||
back="#72727280"
|
||||
show_header="TRUE"
|
||||
show_back="FALSE">
|
||||
@@ -979,14 +984,14 @@
|
||||
gp_vertex_select="#000000"
|
||||
gp_vertex_size="1"
|
||||
marker_outline="#000000"
|
||||
marker="#76243b"
|
||||
marker="#7f7f00"
|
||||
active_marker="#ffffff"
|
||||
selected_marker="#d5ff00"
|
||||
selected_marker="#ffff00"
|
||||
disabled_marker="#7f0000"
|
||||
locked_marker="#7f7f7f"
|
||||
path_before="#ff5100"
|
||||
path_after="#19b6ee"
|
||||
frame_current="#f47421"
|
||||
path_before="#ff0000"
|
||||
path_after="#0000ff"
|
||||
frame_current="#60c040"
|
||||
strips="#0c0a0a"
|
||||
strips_selected="#ff8c00"
|
||||
handle_free="#000000"
|
||||
@@ -999,25 +1004,25 @@
|
||||
handle_sel_auto_clamped="#000000"
|
||||
handle_vertex="#000000"
|
||||
handle_vertex_select="#ffff00"
|
||||
handle_vertex_size="4">
|
||||
handle_vertex_size="5">
|
||||
<space>
|
||||
<ThemeSpaceGeneric back="#131311"
|
||||
title="#9c9c9c"
|
||||
text="#9c9c9c"
|
||||
<ThemeSpaceGeneric back="#757575"
|
||||
title="#000000"
|
||||
text="#000000"
|
||||
text_hi="#ffffff"
|
||||
header="#464541"
|
||||
header_text="#9c9c9c"
|
||||
header="#b4b4b4"
|
||||
header_text="#000000"
|
||||
header_text_hi="#ffffff"
|
||||
button="#3c3b37ff"
|
||||
button_title="#9c9c9c"
|
||||
button_text="#ffffff"
|
||||
button="#b4b4b4ff"
|
||||
button_title="#000000"
|
||||
button_text="#000000"
|
||||
button_text_hi="#ffffff"
|
||||
tab_active="#3c3b37"
|
||||
tab_inactive="#333333"
|
||||
tab_back="#2e2e2eff"
|
||||
tab_outline="#000000">
|
||||
tab_active="#b4b4b4"
|
||||
tab_inactive="#999999"
|
||||
tab_back="#757575ff"
|
||||
tab_outline="#3c3c3c">
|
||||
<panelcolors>
|
||||
<ThemePanelColors header="#00000000"
|
||||
<ThemePanelColors header="#00000019"
|
||||
back="#72727280"
|
||||
show_header="TRUE"
|
||||
show_back="FALSE">
|
||||
@@ -1035,30 +1040,30 @@
|
||||
</ThemeClipEditor>
|
||||
</clip_editor>
|
||||
<bone_color_sets>
|
||||
<ThemeBoneColorSet normal="#9a2400"
|
||||
select="#bd3000"
|
||||
active="#f74700"
|
||||
<ThemeBoneColorSet normal="#9a0000"
|
||||
select="#bd1111"
|
||||
active="#f70a0a"
|
||||
show_colored_constraints="FALSE">
|
||||
</ThemeBoneColorSet>
|
||||
<ThemeBoneColorSet normal="#ff5d06"
|
||||
select="#ff7b20"
|
||||
active="#ff9248"
|
||||
<ThemeBoneColorSet normal="#f74018"
|
||||
select="#f66913"
|
||||
active="#fa9900"
|
||||
show_colored_constraints="FALSE">
|
||||
</ThemeBoneColorSet>
|
||||
<ThemeBoneColorSet normal="#7f9103"
|
||||
select="#a8b700"
|
||||
active="#c9ef1d"
|
||||
<ThemeBoneColorSet normal="#1e9109"
|
||||
select="#59b70b"
|
||||
active="#83ef1d"
|
||||
show_colored_constraints="FALSE">
|
||||
</ThemeBoneColorSet>
|
||||
<ThemeBoneColorSet normal="#19a3d5"
|
||||
select="#00d9ee"
|
||||
active="#95f5ff"
|
||||
<ThemeBoneColorSet normal="#0a3694"
|
||||
select="#3667df"
|
||||
active="#5ec1ef"
|
||||
show_colored_constraints="FALSE">
|
||||
</ThemeBoneColorSet>
|
||||
<ThemeBoneColorSet normal="#a9294e"
|
||||
select="#c1416a"
|
||||
active="#f05d91"
|
||||
show_colored_constraints="TRUE">
|
||||
show_colored_constraints="FALSE">
|
||||
</ThemeBoneColorSet>
|
||||
<ThemeBoneColorSet normal="#430c78"
|
||||
select="#543aa3"
|
||||
1179
release/scripts/presets/interface_theme/dark_blue_gradient.xml
Normal file
1179
release/scripts/presets/interface_theme/dark_blue_gradient.xml
Normal file
@@ -0,0 +1,1179 @@
|
||||
<bpy>
|
||||
<Theme>
|
||||
<user_interface>
|
||||
<ThemeUserInterface menu_shadow_fac="0.5"
|
||||
menu_shadow_width="12"
|
||||
icon_file=""
|
||||
icon_alpha="1"
|
||||
widget_emboss="#ffffff05"
|
||||
axis_x="#801a1a"
|
||||
axis_y="#1a801a"
|
||||
axis_z="#1a1a80">
|
||||
<wcol_regular>
|
||||
<ThemeWidgetColors outline="#191919"
|
||||
inner="#4179b848"
|
||||
inner_sel="#4179b8ff"
|
||||
item="#191919ff"
|
||||
text="#b8b8b8"
|
||||
text_sel="#ffffff"
|
||||
show_shaded="TRUE"
|
||||
shadetop="31"
|
||||
shadedown="-20">
|
||||
</ThemeWidgetColors>
|
||||
</wcol_regular>
|
||||
<wcol_tool>
|
||||
<ThemeWidgetColors outline="#303030"
|
||||
inner="#3d4b59b5"
|
||||
inner_sel="#4179b8ff"
|
||||
item="#1e252cb5"
|
||||
text="#b8b8b8"
|
||||
text_sel="#ffffff"
|
||||
show_shaded="TRUE"
|
||||
shadetop="10"
|
||||
shadedown="-10">
|
||||
</ThemeWidgetColors>
|
||||
</wcol_tool>
|
||||
<wcol_radio>
|
||||
<ThemeWidgetColors outline="#303030"
|
||||
inner="#172e4535"
|
||||
inner_sel="#48709e9d"
|
||||
item="#ffffffff"
|
||||
text="#b8b8b8"
|
||||
text_sel="#000000"
|
||||
show_shaded="TRUE"
|
||||
shadetop="56"
|
||||
shadedown="-20">
|
||||
</ThemeWidgetColors>
|
||||
</wcol_radio>
|
||||
<wcol_text>
|
||||
<ThemeWidgetColors outline="#303030"
|
||||
inner="#7a8287ff"
|
||||
inner_sel="#999999ff"
|
||||
item="#5a5a5aff"
|
||||
text="#000000"
|
||||
text_sel="#ffffff"
|
||||
show_shaded="TRUE"
|
||||
shadetop="5"
|
||||
shadedown="-25">
|
||||
</ThemeWidgetColors>
|
||||
</wcol_text>
|
||||
<wcol_option>
|
||||
<ThemeWidgetColors outline="#303030"
|
||||
inner="#4179b851"
|
||||
inner_sel="#4179b8ff"
|
||||
item="#ffffffff"
|
||||
text="#b8b8b8"
|
||||
text_sel="#ffffff"
|
||||
show_shaded="TRUE"
|
||||
shadetop="5"
|
||||
shadedown="-25">
|
||||
</ThemeWidgetColors>
|
||||
</wcol_option>
|
||||
<wcol_toggle>
|
||||
<ThemeWidgetColors outline="#303030"
|
||||
inner="#48607999"
|
||||
inner_sel="#577ba1ff"
|
||||
item="#191919ff"
|
||||
text="#b8b8b8"
|
||||
text_sel="#000000"
|
||||
show_shaded="TRUE"
|
||||
shadetop="17"
|
||||
shadedown="-20">
|
||||
</ThemeWidgetColors>
|
||||
</wcol_toggle>
|
||||
<wcol_num>
|
||||
<ThemeWidgetColors outline="#303030"
|
||||
inner="#5e6d7d51"
|
||||
inner_sel="#667686ff"
|
||||
item="#000000ff"
|
||||
text="#b8b8b8"
|
||||
text_sel="#ffffff"
|
||||
show_shaded="TRUE"
|
||||
shadetop="5"
|
||||
shadedown="-25">
|
||||
</ThemeWidgetColors>
|
||||
</wcol_num>
|
||||
<wcol_numslider>
|
||||
<ThemeWidgetColors outline="#303030"
|
||||
inner="#213e5d7e"
|
||||
inner_sel="#667686ff"
|
||||
item="#3f76b0ff"
|
||||
text="#d7d7d7"
|
||||
text_sel="#ffffff"
|
||||
show_shaded="TRUE"
|
||||
shadetop="-25"
|
||||
shadedown="10">
|
||||
</ThemeWidgetColors>
|
||||
</wcol_numslider>
|
||||
<wcol_box>
|
||||
<ThemeWidgetColors outline="#2a2a2a"
|
||||
inner="#39424bcc"
|
||||
inner_sel="#667686bf"
|
||||
item="#191919ff"
|
||||
text="#000000"
|
||||
text_sel="#ffffff"
|
||||
show_shaded="TRUE"
|
||||
shadetop="25"
|
||||
shadedown="-20">
|
||||
</ThemeWidgetColors>
|
||||
</wcol_box>
|
||||
<wcol_menu>
|
||||
<ThemeWidgetColors outline="#2c2c2c"
|
||||
inner="#444444ff"
|
||||
inner_sel="#41618400"
|
||||
item="#7a7a7aff"
|
||||
text="#b8b8b8"
|
||||
text_sel="#cccccc"
|
||||
show_shaded="TRUE"
|
||||
shadetop="25"
|
||||
shadedown="0">
|
||||
</ThemeWidgetColors>
|
||||
</wcol_menu>
|
||||
<wcol_pulldown>
|
||||
<ThemeWidgetColors outline="#000000"
|
||||
inner="#4978aa75"
|
||||
inner_sel="#4978aaff"
|
||||
item="#ffffffff"
|
||||
text="#b8b8b8"
|
||||
text_sel="#000000"
|
||||
show_shaded="TRUE"
|
||||
shadetop="25"
|
||||
shadedown="0">
|
||||
</ThemeWidgetColors>
|
||||
</wcol_pulldown>
|
||||
<wcol_menu_back>
|
||||
<ThemeWidgetColors outline="#000000"
|
||||
inner="#26313ce8"
|
||||
inner_sel="#2d2d2de6"
|
||||
item="#646464ff"
|
||||
text="#b8b8b8"
|
||||
text_sel="#ffffff"
|
||||
show_shaded="TRUE"
|
||||
shadetop="25"
|
||||
shadedown="-10">
|
||||
</ThemeWidgetColors>
|
||||
</wcol_menu_back>
|
||||
<wcol_pie_menu>
|
||||
<ThemeWidgetColors outline="#0a0a0a"
|
||||
inner="#1d2329e6"
|
||||
inner_sel="#8c8c8cff"
|
||||
item="#416184e6"
|
||||
text="#a0a0a0"
|
||||
text_sel="#ffffff"
|
||||
show_shaded="TRUE"
|
||||
shadetop="10"
|
||||
shadedown="-10">
|
||||
</ThemeWidgetColors>
|
||||
</wcol_pie_menu>
|
||||
<wcol_tooltip>
|
||||
<ThemeWidgetColors outline="#000000"
|
||||
inner="#191919e6"
|
||||
inner_sel="#2d2d2de6"
|
||||
item="#646464ff"
|
||||
text="#ffffff"
|
||||
text_sel="#ffffff"
|
||||
show_shaded="TRUE"
|
||||
shadetop="25"
|
||||
shadedown="-20">
|
||||
</ThemeWidgetColors>
|
||||
</wcol_tooltip>
|
||||
<wcol_menu_item>
|
||||
<ThemeWidgetColors outline="#000000"
|
||||
inner="#3e79b600"
|
||||
inner_sel="#4978aaff"
|
||||
item="#ffffffff"
|
||||
text="#b8b8b8"
|
||||
text_sel="#000000"
|
||||
show_shaded="TRUE"
|
||||
shadetop="20"
|
||||
shadedown="-20">
|
||||
</ThemeWidgetColors>
|
||||
</wcol_menu_item>
|
||||
<wcol_scroll>
|
||||
<ThemeWidgetColors outline="#2d2d2d"
|
||||
inner="#376fa91a"
|
||||
inner_sel="#85b9ef77"
|
||||
item="#264b7079"
|
||||
text="#000000"
|
||||
text_sel="#ffffff"
|
||||
show_shaded="TRUE"
|
||||
shadetop="10"
|
||||
shadedown="-10">
|
||||
</ThemeWidgetColors>
|
||||
</wcol_scroll>
|
||||
<wcol_progress>
|
||||
<ThemeWidgetColors outline="#000000"
|
||||
inner="#bebebeff"
|
||||
inner_sel="#646464b4"
|
||||
item="#444444ff"
|
||||
text="#000000"
|
||||
text_sel="#ffffff"
|
||||
show_shaded="TRUE"
|
||||
shadetop="10"
|
||||
shadedown="-10">
|
||||
</ThemeWidgetColors>
|
||||
</wcol_progress>
|
||||
<wcol_list_item>
|
||||
<ThemeWidgetColors outline="#000000"
|
||||
inner="#3e79b600"
|
||||
inner_sel="#1d4f81b7"
|
||||
item="#5a5a5aff"
|
||||
text="#f0f0f0"
|
||||
text_sel="#ffffff"
|
||||
show_shaded="TRUE"
|
||||
shadetop="-35"
|
||||
shadedown="20">
|
||||
</ThemeWidgetColors>
|
||||
</wcol_list_item>
|
||||
<wcol_state>
|
||||
<ThemeWidgetStateColors inner_anim="#339900"
|
||||
inner_anim_sel="#2b8000"
|
||||
inner_key="#999300"
|
||||
inner_key_sel="#666200"
|
||||
inner_driven="#b400ff"
|
||||
inner_driven_sel="#9900e6"
|
||||
blend="0.5">
|
||||
</ThemeWidgetStateColors>
|
||||
</wcol_state>
|
||||
</ThemeUserInterface>
|
||||
</user_interface>
|
||||
<view_3d>
|
||||
<ThemeView3D grid="#666666"
|
||||
wire="#000000"
|
||||
wire_edit="#000000"
|
||||
gp_vertex="#000000"
|
||||
gp_vertex_select="#ff8500"
|
||||
gp_vertex_size="3"
|
||||
lamp="#00000028"
|
||||
speaker="#000000"
|
||||
camera="#000000"
|
||||
view_overlay="#000000"
|
||||
empty="#000000"
|
||||
object_selected="#0069ff"
|
||||
object_active="#80b5ff"
|
||||
object_grouped="#083008"
|
||||
object_grouped_active="#55bb55"
|
||||
transform="#ffffff"
|
||||
vertex="#657780"
|
||||
vertex_select="#ff7c00"
|
||||
vertex_size="3"
|
||||
vertex_unreferenced="#000000"
|
||||
edge_select="#cb7027"
|
||||
edge_seam="#db2512"
|
||||
edge_sharp="#00ffff"
|
||||
edge_crease="#cc0099"
|
||||
edge_facesel="#4b4b4b"
|
||||
freestyle_edge_mark="#7fff7f"
|
||||
face="#00000036"
|
||||
face_select="#a47c5b73"
|
||||
face_dot="#be6925"
|
||||
facedot_size="3"
|
||||
freestyle_face_mark="#7fff7f33"
|
||||
nurb_uline="#909000"
|
||||
nurb_vline="#803060"
|
||||
nurb_sel_uline="#f0ff40"
|
||||
nurb_sel_vline="#f090a0"
|
||||
act_spline="#db2512"
|
||||
handle_free="#000000"
|
||||
handle_auto="#909000"
|
||||
handle_vect="#409030"
|
||||
handle_sel_vect="#40c030"
|
||||
handle_align="#803060"
|
||||
handle_sel_free="#000000"
|
||||
handle_sel_auto="#f0ff40"
|
||||
handle_sel_align="#f090a0"
|
||||
lastsel_point="#ffffff"
|
||||
extra_edge_len="#200000"
|
||||
extra_edge_angle="#000000"
|
||||
extra_face_angle="#000080"
|
||||
extra_face_area="#002000"
|
||||
editmesh_active="#ffffff80"
|
||||
normal="#22dddd"
|
||||
vertex_normal="#2361dd"
|
||||
split_normal="#dd23dd"
|
||||
bone_solid="#c8c8c8"
|
||||
bone_pose="#50c8ff"
|
||||
bone_pose_active="#8cffff"
|
||||
frame_current="#60c040"
|
||||
outline_width="1"
|
||||
bundle_solid="#c8c8c8"
|
||||
camera_path="#000000"
|
||||
skin_root="#000000"
|
||||
clipping_border_3d="#313131ff"
|
||||
text_keyframe="#ddd700"
|
||||
text_grease_pencil="#b5e61d"
|
||||
paint_curve_handle="#7fff7f7f"
|
||||
paint_curve_pivot="#ff7f7f7f">
|
||||
<space>
|
||||
<ThemeSpaceGradient title="#000000"
|
||||
text="#b8b8b8"
|
||||
text_hi="#e9e9e9"
|
||||
header="#3b3b3b"
|
||||
header_text="#b9b9b9"
|
||||
header_text_hi="#ffffff"
|
||||
button="#1d232980"
|
||||
button_title="#979797"
|
||||
button_text="#e8e8e8"
|
||||
button_text_hi="#ffffff"
|
||||
tab_active="#2f5175"
|
||||
tab_inactive="#1d2329"
|
||||
tab_back="#42505eff"
|
||||
tab_outline="#42505e">
|
||||
<gradients>
|
||||
<ThemeGradientColors show_grad="TRUE"
|
||||
gradient="#0f0f0f"
|
||||
high_gradient="#42505e">
|
||||
</ThemeGradientColors>
|
||||
</gradients>
|
||||
<panelcolors>
|
||||
<ThemePanelColors header="#00000000"
|
||||
back="#282828b0"
|
||||
show_header="TRUE"
|
||||
show_back="FALSE">
|
||||
</ThemePanelColors>
|
||||
</panelcolors>
|
||||
</ThemeSpaceGradient>
|
||||
</space>
|
||||
</ThemeView3D>
|
||||
</view_3d>
|
||||
<graph_editor>
|
||||
<ThemeGraphEditor grid="#585858"
|
||||
frame_current="#60c040"
|
||||
window_sliders="#969696"
|
||||
channels_region="#707070"
|
||||
dopesheet_channel="#52606e"
|
||||
dopesheet_subchannel="#545d66"
|
||||
channel_group="#4f6549"
|
||||
active_channels_group="#87b17d"
|
||||
vertex="#000000"
|
||||
vertex_select="#ff8500"
|
||||
vertex_size="3"
|
||||
vertex_unreferenced="#000000"
|
||||
handle_free="#000000"
|
||||
handle_auto="#909000"
|
||||
handle_vect="#409030"
|
||||
handle_sel_vect="#40c030"
|
||||
handle_align="#803060"
|
||||
handle_sel_free="#000000"
|
||||
handle_sel_auto="#f0ff40"
|
||||
handle_sel_align="#f090a0"
|
||||
handle_auto_clamped="#994030"
|
||||
handle_sel_auto_clamped="#f0af90"
|
||||
lastsel_point="#ffffff"
|
||||
handle_vertex="#000000"
|
||||
handle_vertex_select="#ff8500"
|
||||
handle_vertex_size="4">
|
||||
<space>
|
||||
<ThemeSpaceGeneric back="#4b4b4b"
|
||||
title="#8b8b8b"
|
||||
text="#ffffff"
|
||||
text_hi="#ffffff"
|
||||
header="#3b3b3b"
|
||||
header_text="#000000"
|
||||
header_text_hi="#ffffff"
|
||||
button="#3b3b3bff"
|
||||
button_title="#8b8b8b"
|
||||
button_text="#8b8b8b"
|
||||
button_text_hi="#ffffff"
|
||||
tab_active="#aca8a7"
|
||||
tab_inactive="#bfbfbf"
|
||||
tab_back="#bfbfbfff"
|
||||
tab_outline="#d1cccb">
|
||||
<panelcolors>
|
||||
<ThemePanelColors header="#00000019"
|
||||
back="#72727280"
|
||||
show_header="FALSE"
|
||||
show_back="FALSE">
|
||||
</ThemePanelColors>
|
||||
</panelcolors>
|
||||
</ThemeSpaceGeneric>
|
||||
</space>
|
||||
<space_list>
|
||||
<ThemeSpaceListGeneric list="#3b3b3b"
|
||||
list_title="#8b8b8b"
|
||||
list_text="#8b8b8b"
|
||||
list_text_hi="#ffffff">
|
||||
</ThemeSpaceListGeneric>
|
||||
</space_list>
|
||||
</ThemeGraphEditor>
|
||||
</graph_editor>
|
||||
<file_browser>
|
||||
<ThemeFileBrowser selected_file="#755129">
|
||||
<space>
|
||||
<ThemeSpaceGeneric back="#4b4b4b"
|
||||
title="#8b8b8b"
|
||||
text="#cacaca"
|
||||
text_hi="#0f0f0f"
|
||||
header="#3b3b3b"
|
||||
header_text="#8b8b8b"
|
||||
header_text_hi="#ffffff"
|
||||
button="#303030ff"
|
||||
button_title="#000000"
|
||||
button_text="#000000"
|
||||
button_text_hi="#ffffff"
|
||||
tab_active="#aca8a7"
|
||||
tab_inactive="#bfbfbf"
|
||||
tab_back="#bfbfbfff"
|
||||
tab_outline="#d1cccb">
|
||||
<panelcolors>
|
||||
<ThemePanelColors header="#00000019"
|
||||
back="#72727280"
|
||||
show_header="FALSE"
|
||||
show_back="FALSE">
|
||||
</ThemePanelColors>
|
||||
</panelcolors>
|
||||
</ThemeSpaceGeneric>
|
||||
</space>
|
||||
<space_list>
|
||||
<ThemeSpaceListGeneric list="#3b3b3b"
|
||||
list_title="#8b8b8b"
|
||||
list_text="#8b8b8b"
|
||||
list_text_hi="#ffffff">
|
||||
</ThemeSpaceListGeneric>
|
||||
</space_list>
|
||||
</ThemeFileBrowser>
|
||||
</file_browser>
|
||||
<nla_editor>
|
||||
<ThemeNLAEditor grid="#585858"
|
||||
view_sliders="#969696"
|
||||
active_action="#00000000"
|
||||
active_action_unset="#00000000"
|
||||
strips="#0c0a0a"
|
||||
strips_selected="#ff8c00"
|
||||
transition_strips="#000000"
|
||||
transition_strips_selected="#000000"
|
||||
meta_strips="#000000"
|
||||
meta_strips_selected="#000000"
|
||||
sound_strips="#000000"
|
||||
sound_strips_selected="#000000"
|
||||
tweak="#000000"
|
||||
tweak_duplicate="#000000"
|
||||
keyframe_border="#000000ff"
|
||||
keyframe_border_selected="#000000ff"
|
||||
frame_current="#60c040">
|
||||
<space>
|
||||
<ThemeSpaceGeneric back="#4b4b4b"
|
||||
title="#8b8b8b"
|
||||
text="#ffffff"
|
||||
text_hi="#ffffff"
|
||||
header="#3b3b3b"
|
||||
header_text="#000000"
|
||||
header_text_hi="#ffffff"
|
||||
button="#3b3b3bff"
|
||||
button_title="#000000"
|
||||
button_text="#000000"
|
||||
button_text_hi="#ffffff"
|
||||
tab_active="#aca8a7"
|
||||
tab_inactive="#bfbfbf"
|
||||
tab_back="#bfbfbfff"
|
||||
tab_outline="#ded8d7">
|
||||
<panelcolors>
|
||||
<ThemePanelColors header="#00000019"
|
||||
back="#72727280"
|
||||
show_header="FALSE"
|
||||
show_back="FALSE">
|
||||
</ThemePanelColors>
|
||||
</panelcolors>
|
||||
</ThemeSpaceGeneric>
|
||||
</space>
|
||||
<space_list>
|
||||
<ThemeSpaceListGeneric list="#3b3b3b"
|
||||
list_title="#000000"
|
||||
list_text="#000000"
|
||||
list_text_hi="#ffffff">
|
||||
</ThemeSpaceListGeneric>
|
||||
</space_list>
|
||||
</ThemeNLAEditor>
|
||||
</nla_editor>
|
||||
<dopesheet_editor>
|
||||
<ThemeDopeSheet grid="#585858"
|
||||
frame_current="#60c040"
|
||||
value_sliders="#000000"
|
||||
view_sliders="#969696"
|
||||
dopesheet_channel="#52606e"
|
||||
dopesheet_subchannel="#7c8996"
|
||||
channels="#707070"
|
||||
channels_selected="#60c040"
|
||||
channel_group="#4f6549"
|
||||
active_channels_group="#87b17d"
|
||||
long_key="#0c0a0a"
|
||||
long_key_selected="#ff8c00"
|
||||
keyframe="#bddae8"
|
||||
keyframe_selected="#ffbe32"
|
||||
keyframe_extreme="#e8b3cc"
|
||||
keyframe_extreme_selected="#f28080"
|
||||
keyframe_breakdown="#b3dbe8"
|
||||
keyframe_breakdown_selected="#54bfed"
|
||||
keyframe_jitter="#ace493"
|
||||
keyframe_jitter_selected="#61c042"
|
||||
keyframe_border="#000000ff"
|
||||
keyframe_border_selected="#000000ff"
|
||||
summary="#00000000">
|
||||
<space>
|
||||
<ThemeSpaceGeneric back="#4b4b4b"
|
||||
title="#000000"
|
||||
text="#ffffff"
|
||||
text_hi="#ffffff"
|
||||
header="#3b3b3b"
|
||||
header_text="#000000"
|
||||
header_text_hi="#ffffff"
|
||||
button="#aaaaaaff"
|
||||
button_title="#000000"
|
||||
button_text="#000000"
|
||||
button_text_hi="#ffffff"
|
||||
tab_active="#aca8a7"
|
||||
tab_inactive="#bfbfbf"
|
||||
tab_back="#bfbfbfff"
|
||||
tab_outline="#d1cccb">
|
||||
<panelcolors>
|
||||
<ThemePanelColors header="#00000019"
|
||||
back="#72727280"
|
||||
show_header="FALSE"
|
||||
show_back="FALSE">
|
||||
</ThemePanelColors>
|
||||
</panelcolors>
|
||||
</ThemeSpaceGeneric>
|
||||
</space>
|
||||
<space_list>
|
||||
<ThemeSpaceListGeneric list="#3b3b3b"
|
||||
list_title="#000000"
|
||||
list_text="#000000"
|
||||
list_text_hi="#ffffff">
|
||||
</ThemeSpaceListGeneric>
|
||||
</space_list>
|
||||
</ThemeDopeSheet>
|
||||
</dopesheet_editor>
|
||||
<image_editor>
|
||||
<ThemeImageEditor gp_vertex="#000000"
|
||||
gp_vertex_select="#ff8500"
|
||||
gp_vertex_size="3"
|
||||
vertex="#32adec"
|
||||
vertex_select="#be6925"
|
||||
vertex_size="3"
|
||||
vertex_unreferenced="#000000"
|
||||
face="#a47c5b0a"
|
||||
face_select="#a47c5b3c"
|
||||
face_dot="#ffffff"
|
||||
facedot_size="3"
|
||||
freestyle_face_mark="#00000000"
|
||||
editmesh_active="#ffffff80"
|
||||
wire_edit="#c0c0c0"
|
||||
edge_select="#ff8500"
|
||||
scope_back="#303030ff"
|
||||
preview_stitch_face="#1242b026"
|
||||
preview_stitch_edge="#ff8500b2"
|
||||
preview_stitch_vert="#ff85007f"
|
||||
preview_stitch_stitchable="#00ff00ff"
|
||||
preview_stitch_unstitchable="#ff0000ff"
|
||||
preview_stitch_active="#e1d2c323"
|
||||
uv_shadow="#707070ff"
|
||||
uv_others="#606060ff"
|
||||
frame_current="#60c040"
|
||||
metadatabg="#000000"
|
||||
metadatatext="#ffffff"
|
||||
handle_free="#000000"
|
||||
handle_auto="#909000"
|
||||
handle_align="#803060"
|
||||
handle_sel_free="#000000"
|
||||
handle_sel_auto="#f0ff40"
|
||||
handle_sel_align="#f090a0"
|
||||
handle_auto_clamped="#000000"
|
||||
handle_sel_auto_clamped="#000000"
|
||||
handle_vertex="#000000"
|
||||
handle_vertex_select="#ffff00"
|
||||
handle_vertex_size="5"
|
||||
paint_curve_handle="#7fff7f7f"
|
||||
paint_curve_pivot="#ff7f7f7f">
|
||||
<space>
|
||||
<ThemeSpaceGeneric back="#4b4b4b"
|
||||
title="#7f7f7f"
|
||||
text="#999999"
|
||||
text_hi="#ffffff"
|
||||
header="#3b3b3b"
|
||||
header_text="#000000"
|
||||
header_text_hi="#ffffff"
|
||||
button="#1a1a1acc"
|
||||
button_title="#8b8b8b"
|
||||
button_text="#cccccc"
|
||||
button_text_hi="#ffffff"
|
||||
tab_active="#aca8a7"
|
||||
tab_inactive="#bfbfbf"
|
||||
tab_back="#bfbfbfff"
|
||||
tab_outline="#d1cccb">
|
||||
<panelcolors>
|
||||
<ThemePanelColors header="#00000019"
|
||||
back="#72727280"
|
||||
show_header="FALSE"
|
||||
show_back="FALSE">
|
||||
</ThemePanelColors>
|
||||
</panelcolors>
|
||||
</ThemeSpaceGeneric>
|
||||
</space>
|
||||
</ThemeImageEditor>
|
||||
</image_editor>
|
||||
<sequence_editor>
|
||||
<ThemeSequenceEditor gp_vertex="#000000"
|
||||
gp_vertex_select="#ff8500"
|
||||
gp_vertex_size="3"
|
||||
grid="#636363"
|
||||
window_sliders="#a0a0a0"
|
||||
movie_strip="#516987"
|
||||
movieclip_strip="#20208f"
|
||||
image_strip="#6d5881"
|
||||
scene_strip="#4e983e"
|
||||
audio_strip="#2e8f8f"
|
||||
effect_strip="#a9547c"
|
||||
transition_strip="#a25f6f"
|
||||
meta_strip="#6d9183"
|
||||
text_strip="#a29700"
|
||||
frame_current="#60c040"
|
||||
keyframe="#ff8500"
|
||||
draw_action="#50c8ff"
|
||||
preview_back="#000000"
|
||||
metadatabg="#000000"
|
||||
metadatatext="#ffffff">
|
||||
<space>
|
||||
<ThemeSpaceGeneric back="#636363"
|
||||
title="#8b8b8b"
|
||||
text="#ffffff"
|
||||
text_hi="#ffffff"
|
||||
header="#3b3b3b"
|
||||
header_text="#000000"
|
||||
header_text_hi="#ffffff"
|
||||
button="#1a1a1acc"
|
||||
button_title="#afafaf"
|
||||
button_text="#b3b3b3"
|
||||
button_text_hi="#ffffff"
|
||||
tab_active="#aca8a7"
|
||||
tab_inactive="#bfbfbf"
|
||||
tab_back="#bfbfbfff"
|
||||
tab_outline="#d1cccb">
|
||||
<panelcolors>
|
||||
<ThemePanelColors header="#00000019"
|
||||
back="#72727280"
|
||||
show_header="FALSE"
|
||||
show_back="FALSE">
|
||||
</ThemePanelColors>
|
||||
</panelcolors>
|
||||
</ThemeSpaceGeneric>
|
||||
</space>
|
||||
</ThemeSequenceEditor>
|
||||
</sequence_editor>
|
||||
<properties>
|
||||
<ThemeProperties>
|
||||
<space>
|
||||
<ThemeSpaceGeneric back="#3b3b3b"
|
||||
title="#979797"
|
||||
text="#b8b8b8"
|
||||
text_hi="#ffffff"
|
||||
header="#3b3b3b"
|
||||
header_text="#000000"
|
||||
header_text_hi="#ffffff"
|
||||
button="#727272ff"
|
||||
button_title="#b8b8b8"
|
||||
button_text="#b8b8b8"
|
||||
button_text_hi="#ffffff"
|
||||
tab_active="#aca8a7"
|
||||
tab_inactive="#bfbfbf"
|
||||
tab_back="#bfbfbfff"
|
||||
tab_outline="#d1cccb">
|
||||
<panelcolors>
|
||||
<ThemePanelColors header="#0000002a"
|
||||
back="#72727280"
|
||||
show_header="TRUE"
|
||||
show_back="FALSE">
|
||||
</ThemePanelColors>
|
||||
</panelcolors>
|
||||
</ThemeSpaceGeneric>
|
||||
</space>
|
||||
</ThemeProperties>
|
||||
</properties>
|
||||
<text_editor>
|
||||
<ThemeTextEditor line_numbers_background="#2e2e2e"
|
||||
selected_text="#4e4e8f"
|
||||
cursor="#8b8bff"
|
||||
syntax_builtin="#ed4800"
|
||||
syntax_symbols="#ff8f00"
|
||||
syntax_special="#c080d0"
|
||||
syntax_preprocessor="#32008c"
|
||||
syntax_reserved="#8c3c00"
|
||||
syntax_comment="#cd8b00"
|
||||
syntax_string="#ffcd8b"
|
||||
syntax_numbers="#f0ad6d">
|
||||
<space>
|
||||
<ThemeSpaceGeneric back="#29201f"
|
||||
title="#8b8b8b"
|
||||
text="#cfbfad"
|
||||
text_hi="#ffffff"
|
||||
header="#3b3b3b"
|
||||
header_text="#000000"
|
||||
header_text_hi="#ffffff"
|
||||
button="#3b3b3bff"
|
||||
button_title="#8b8b8b"
|
||||
button_text="#8b8b8b"
|
||||
button_text_hi="#ffffff"
|
||||
tab_active="#aca8a7"
|
||||
tab_inactive="#bfbfbf"
|
||||
tab_back="#bfbfbfff"
|
||||
tab_outline="#d1cccb">
|
||||
<panelcolors>
|
||||
<ThemePanelColors header="#00000019"
|
||||
back="#72727280"
|
||||
show_header="FALSE"
|
||||
show_back="FALSE">
|
||||
</ThemePanelColors>
|
||||
</panelcolors>
|
||||
</ThemeSpaceGeneric>
|
||||
</space>
|
||||
</ThemeTextEditor>
|
||||
</text_editor>
|
||||
<timeline>
|
||||
<ThemeTimeline grid="#5b5b5b"
|
||||
frame_current="#338aff"
|
||||
time_keyframe="#ddd700"
|
||||
time_grease_pencil="#b5e61d">
|
||||
<space>
|
||||
<ThemeSpaceGeneric back="#4b4b4b"
|
||||
title="#000000"
|
||||
text="#b8b8b8"
|
||||
text_hi="#ffffff"
|
||||
header="#3b3b3b"
|
||||
header_text="#000000"
|
||||
header_text_hi="#ffffff"
|
||||
button="#727272ff"
|
||||
button_title="#000000"
|
||||
button_text="#000000"
|
||||
button_text_hi="#ffffff"
|
||||
tab_active="#aca8a7"
|
||||
tab_inactive="#bfbfbf"
|
||||
tab_back="#bfbfbfff"
|
||||
tab_outline="#d1cccb">
|
||||
<panelcolors>
|
||||
<ThemePanelColors header="#00000019"
|
||||
back="#72727280"
|
||||
show_header="FALSE"
|
||||
show_back="FALSE">
|
||||
</ThemePanelColors>
|
||||
</panelcolors>
|
||||
</ThemeSpaceGeneric>
|
||||
</space>
|
||||
</ThemeTimeline>
|
||||
</timeline>
|
||||
<node_editor>
|
||||
<ThemeNodeEditor gp_vertex="#000000"
|
||||
gp_vertex_select="#ff8500"
|
||||
gp_vertex_size="3"
|
||||
node_selected="#ffffff"
|
||||
node_active="#ffffff"
|
||||
wire="#000000"
|
||||
wire_inner="#737373"
|
||||
wire_select="#ffffff"
|
||||
selected_text="#7f7070"
|
||||
node_backdrop="#9b9b9ba0"
|
||||
converter_node="#575675"
|
||||
color_node="#f2b077"
|
||||
group_node="#1e7524"
|
||||
group_socket_node="#dfca35"
|
||||
frame_node="#9a9b9ba0"
|
||||
matte_node="#000000"
|
||||
distor_node="#000000"
|
||||
noodle_curving="5"
|
||||
input_node="#79bef2"
|
||||
output_node="#79bef2"
|
||||
filter_node="#ff0000"
|
||||
vector_node="#6de8e4"
|
||||
texture_node="#f2b077"
|
||||
shader_node="#e88daa"
|
||||
script_node="#f2b077"
|
||||
pattern_node="#a67c49"
|
||||
layout_node="#000000">
|
||||
<space>
|
||||
<ThemeSpaceGeneric back="#3b3b3b"
|
||||
title="#8b8b8b"
|
||||
text="#dbdbdb"
|
||||
text_hi="#ffffff"
|
||||
header="#3b3b3b"
|
||||
header_text="#000000"
|
||||
header_text_hi="#ffffff"
|
||||
button="#3b3b3b80"
|
||||
button_title="#8b8b8b"
|
||||
button_text="#8b8b8b"
|
||||
button_text_hi="#ffffff"
|
||||
tab_active="#aca8a7"
|
||||
tab_inactive="#bfbfbf"
|
||||
tab_back="#bfbfbfff"
|
||||
tab_outline="#d1cccb">
|
||||
<panelcolors>
|
||||
<ThemePanelColors header="#00000019"
|
||||
back="#72727280"
|
||||
show_header="FALSE"
|
||||
show_back="FALSE">
|
||||
</ThemePanelColors>
|
||||
</panelcolors>
|
||||
</ThemeSpaceGeneric>
|
||||
</space>
|
||||
<space_list>
|
||||
<ThemeSpaceListGeneric list="#a5a5a5"
|
||||
list_title="#000000"
|
||||
list_text="#000000"
|
||||
list_text_hi="#ffffff">
|
||||
</ThemeSpaceListGeneric>
|
||||
</space_list>
|
||||
</ThemeNodeEditor>
|
||||
</node_editor>
|
||||
<logic_editor>
|
||||
<ThemeLogicEditor>
|
||||
<space>
|
||||
<ThemeSpaceGeneric back="#3b3b3b"
|
||||
title="#000000"
|
||||
text="#000000"
|
||||
text_hi="#ffffff"
|
||||
header="#3b3b3b"
|
||||
header_text="#000000"
|
||||
header_text_hi="#ffffff"
|
||||
button="#3b3b3bff"
|
||||
button_title="#8b8b8b"
|
||||
button_text="#8b8b8b"
|
||||
button_text_hi="#ffffff"
|
||||
tab_active="#aca8a7"
|
||||
tab_inactive="#bfbfbf"
|
||||
tab_back="#bfbfbfff"
|
||||
tab_outline="#d1cccb">
|
||||
<panelcolors>
|
||||
<ThemePanelColors header="#00000019"
|
||||
back="#72727280"
|
||||
show_header="FALSE"
|
||||
show_back="FALSE">
|
||||
</ThemePanelColors>
|
||||
</panelcolors>
|
||||
</ThemeSpaceGeneric>
|
||||
</space>
|
||||
</ThemeLogicEditor>
|
||||
</logic_editor>
|
||||
<outliner>
|
||||
<ThemeOutliner match="#337f33"
|
||||
selected_highlight="#82878c">
|
||||
<space>
|
||||
<ThemeSpaceGeneric back="#4b4b4b"
|
||||
title="#000000"
|
||||
text="#cacaca"
|
||||
text_hi="#ffffff"
|
||||
header="#3b3b3b"
|
||||
header_text="#000000"
|
||||
header_text_hi="#ffffff"
|
||||
button="#727272ff"
|
||||
button_title="#000000"
|
||||
button_text="#000000"
|
||||
button_text_hi="#ffffff"
|
||||
tab_active="#aca8a7"
|
||||
tab_inactive="#bfbfbf"
|
||||
tab_back="#bfbfbfff"
|
||||
tab_outline="#d1cccb">
|
||||
<panelcolors>
|
||||
<ThemePanelColors header="#00000019"
|
||||
back="#72727280"
|
||||
show_header="FALSE"
|
||||
show_back="FALSE">
|
||||
</ThemePanelColors>
|
||||
</panelcolors>
|
||||
</ThemeSpaceGeneric>
|
||||
</space>
|
||||
</ThemeOutliner>
|
||||
</outliner>
|
||||
<info>
|
||||
<ThemeInfo info_selected="#6080ff"
|
||||
info_selected_text="#ffffff"
|
||||
info_error="#dc0000"
|
||||
info_error_text="#000000"
|
||||
info_warning="#dc8060"
|
||||
info_warning_text="#000000"
|
||||
info_info="#00aa00"
|
||||
info_info_text="#000000"
|
||||
info_debug="#c4c4c4"
|
||||
info_debug_text="#000000">
|
||||
<space>
|
||||
<ThemeSpaceGeneric back="#727272"
|
||||
title="#000000"
|
||||
text="#141414"
|
||||
text_hi="#000000"
|
||||
header="#3b3b3b"
|
||||
header_text="#c2c2c2"
|
||||
header_text_hi="#000000"
|
||||
button="#3b3b3bff"
|
||||
button_title="#000000"
|
||||
button_text="#000000"
|
||||
button_text_hi="#000000"
|
||||
tab_active="#aca8a7"
|
||||
tab_inactive="#bfbfbf"
|
||||
tab_back="#bfbfbfff"
|
||||
tab_outline="#d1cccb">
|
||||
<panelcolors>
|
||||
<ThemePanelColors header="#00000019"
|
||||
back="#72727280"
|
||||
show_header="FALSE"
|
||||
show_back="FALSE">
|
||||
</ThemePanelColors>
|
||||
</panelcolors>
|
||||
</ThemeSpaceGeneric>
|
||||
</space>
|
||||
</ThemeInfo>
|
||||
</info>
|
||||
<user_preferences>
|
||||
<ThemeUserPreferences>
|
||||
<space>
|
||||
<ThemeSpaceGeneric back="#3b3b3b"
|
||||
title="#000000"
|
||||
text="#b8b8b8"
|
||||
text_hi="#ffffff"
|
||||
header="#3b3b3b"
|
||||
header_text="#000000"
|
||||
header_text_hi="#ffffff"
|
||||
button="#727272ff"
|
||||
button_title="#000000"
|
||||
button_text="#000000"
|
||||
button_text_hi="#ffffff"
|
||||
tab_active="#aca8a7"
|
||||
tab_inactive="#bfbfbf"
|
||||
tab_back="#bfbfbfff"
|
||||
tab_outline="#d1cccb">
|
||||
<panelcolors>
|
||||
<ThemePanelColors header="#00000019"
|
||||
back="#72727280"
|
||||
show_header="FALSE"
|
||||
show_back="FALSE">
|
||||
</ThemePanelColors>
|
||||
</panelcolors>
|
||||
</ThemeSpaceGeneric>
|
||||
</space>
|
||||
</ThemeUserPreferences>
|
||||
</user_preferences>
|
||||
<console>
|
||||
<ThemeConsole line_output="#b8b8b8"
|
||||
line_input="#ffffff"
|
||||
line_info="#00aa00"
|
||||
line_error="#dc6060"
|
||||
cursor="#dc6060"
|
||||
select="#ffffff30">
|
||||
<space>
|
||||
<ThemeSpaceGeneric back="#202020"
|
||||
title="#000000"
|
||||
text="#000000"
|
||||
text_hi="#ffffff"
|
||||
header="#303030"
|
||||
header_text="#000000"
|
||||
header_text_hi="#ffffff"
|
||||
button="#3b3b3bff"
|
||||
button_title="#000000"
|
||||
button_text="#000000"
|
||||
button_text_hi="#ffffff"
|
||||
tab_active="#aca8a7"
|
||||
tab_inactive="#bfbfbf"
|
||||
tab_back="#bfbfbfff"
|
||||
tab_outline="#d1cccb">
|
||||
<panelcolors>
|
||||
<ThemePanelColors header="#00000019"
|
||||
back="#72727280"
|
||||
show_header="FALSE"
|
||||
show_back="FALSE">
|
||||
</ThemePanelColors>
|
||||
</panelcolors>
|
||||
</ThemeSpaceGeneric>
|
||||
</space>
|
||||
</ThemeConsole>
|
||||
</console>
|
||||
<clip_editor>
|
||||
<ThemeClipEditor gp_vertex="#000000"
|
||||
gp_vertex_select="#000000"
|
||||
gp_vertex_size="1"
|
||||
marker_outline="#000000"
|
||||
marker="#7f7f00"
|
||||
active_marker="#ffffff"
|
||||
selected_marker="#ffff00"
|
||||
disabled_marker="#7f0000"
|
||||
locked_marker="#7f7f7f"
|
||||
path_before="#ff0000"
|
||||
path_after="#0000ff"
|
||||
frame_current="#60c040"
|
||||
strips="#0c0a0a"
|
||||
strips_selected="#ff8c00"
|
||||
handle_free="#000000"
|
||||
handle_auto="#909000"
|
||||
handle_align="#803060"
|
||||
handle_sel_free="#000000"
|
||||
handle_sel_auto="#f0ff40"
|
||||
handle_sel_align="#f090a0"
|
||||
handle_auto_clamped="#000000"
|
||||
handle_sel_auto_clamped="#000000"
|
||||
handle_vertex="#000000"
|
||||
handle_vertex_select="#ffff00"
|
||||
handle_vertex_size="4">
|
||||
<space>
|
||||
<ThemeSpaceGeneric back="#393939"
|
||||
title="#000000"
|
||||
text="#000000"
|
||||
text_hi="#ffffff"
|
||||
header="#313131"
|
||||
header_text="#000000"
|
||||
header_text_hi="#ffffff"
|
||||
button="#1a1a1acc"
|
||||
button_title="#999999"
|
||||
button_text="#939393"
|
||||
button_text_hi="#ffffff"
|
||||
tab_active="#aca8a7"
|
||||
tab_inactive="#bfbfbf"
|
||||
tab_back="#bfbfbfff"
|
||||
tab_outline="#d1cccb">
|
||||
<panelcolors>
|
||||
<ThemePanelColors header="#00000019"
|
||||
back="#72727280"
|
||||
show_header="FALSE"
|
||||
show_back="FALSE">
|
||||
</ThemePanelColors>
|
||||
</panelcolors>
|
||||
</ThemeSpaceGeneric>
|
||||
</space>
|
||||
<space_list>
|
||||
<ThemeSpaceListGeneric list="#666666"
|
||||
list_title="#000000"
|
||||
list_text="#000000"
|
||||
list_text_hi="#ffffff">
|
||||
</ThemeSpaceListGeneric>
|
||||
</space_list>
|
||||
</ThemeClipEditor>
|
||||
</clip_editor>
|
||||
<bone_color_sets>
|
||||
<ThemeBoneColorSet normal="#9a0000"
|
||||
select="#bd1111"
|
||||
active="#f70a0a"
|
||||
show_colored_constraints="FALSE">
|
||||
</ThemeBoneColorSet>
|
||||
<ThemeBoneColorSet normal="#f74018"
|
||||
select="#f66913"
|
||||
active="#fa9900"
|
||||
show_colored_constraints="FALSE">
|
||||
</ThemeBoneColorSet>
|
||||
<ThemeBoneColorSet normal="#1e9109"
|
||||
select="#59b70b"
|
||||
active="#83ef1d"
|
||||
show_colored_constraints="FALSE">
|
||||
</ThemeBoneColorSet>
|
||||
<ThemeBoneColorSet normal="#0a3694"
|
||||
select="#3667df"
|
||||
active="#5ec1ef"
|
||||
show_colored_constraints="FALSE">
|
||||
</ThemeBoneColorSet>
|
||||
<ThemeBoneColorSet normal="#a9294e"
|
||||
select="#c1416a"
|
||||
active="#f05d91"
|
||||
show_colored_constraints="FALSE">
|
||||
</ThemeBoneColorSet>
|
||||
<ThemeBoneColorSet normal="#430c78"
|
||||
select="#543aa3"
|
||||
active="#8764d5"
|
||||
show_colored_constraints="FALSE">
|
||||
</ThemeBoneColorSet>
|
||||
<ThemeBoneColorSet normal="#24785a"
|
||||
select="#3c9579"
|
||||
active="#6fb6ab"
|
||||
show_colored_constraints="FALSE">
|
||||
</ThemeBoneColorSet>
|
||||
<ThemeBoneColorSet normal="#4b707c"
|
||||
select="#6a8691"
|
||||
active="#9bc2cd"
|
||||
show_colored_constraints="FALSE">
|
||||
</ThemeBoneColorSet>
|
||||
<ThemeBoneColorSet normal="#f4c90c"
|
||||
select="#eec236"
|
||||
active="#f3ff00"
|
||||
show_colored_constraints="FALSE">
|
||||
</ThemeBoneColorSet>
|
||||
<ThemeBoneColorSet normal="#1e2024"
|
||||
select="#484c56"
|
||||
active="#ffffff"
|
||||
show_colored_constraints="FALSE">
|
||||
</ThemeBoneColorSet>
|
||||
<ThemeBoneColorSet normal="#6f2f6a"
|
||||
select="#9845be"
|
||||
active="#d330d6"
|
||||
show_colored_constraints="FALSE">
|
||||
</ThemeBoneColorSet>
|
||||
<ThemeBoneColorSet normal="#6c8e22"
|
||||
select="#7fb022"
|
||||
active="#bbef5b"
|
||||
show_colored_constraints="FALSE">
|
||||
</ThemeBoneColorSet>
|
||||
<ThemeBoneColorSet normal="#8d8d8d"
|
||||
select="#b0b0b0"
|
||||
active="#dedede"
|
||||
show_colored_constraints="FALSE">
|
||||
</ThemeBoneColorSet>
|
||||
<ThemeBoneColorSet normal="#834326"
|
||||
select="#8b5811"
|
||||
active="#bd6a11"
|
||||
show_colored_constraints="FALSE">
|
||||
</ThemeBoneColorSet>
|
||||
<ThemeBoneColorSet normal="#08310e"
|
||||
select="#1c430b"
|
||||
active="#34622b"
|
||||
show_colored_constraints="FALSE">
|
||||
</ThemeBoneColorSet>
|
||||
<ThemeBoneColorSet normal="#000000"
|
||||
select="#000000"
|
||||
active="#000000"
|
||||
show_colored_constraints="FALSE">
|
||||
</ThemeBoneColorSet>
|
||||
<ThemeBoneColorSet normal="#000000"
|
||||
select="#000000"
|
||||
active="#000000"
|
||||
show_colored_constraints="FALSE">
|
||||
</ThemeBoneColorSet>
|
||||
<ThemeBoneColorSet normal="#000000"
|
||||
select="#000000"
|
||||
active="#000000"
|
||||
show_colored_constraints="FALSE">
|
||||
</ThemeBoneColorSet>
|
||||
<ThemeBoneColorSet normal="#000000"
|
||||
select="#000000"
|
||||
active="#000000"
|
||||
show_colored_constraints="FALSE">
|
||||
</ThemeBoneColorSet>
|
||||
<ThemeBoneColorSet normal="#000000"
|
||||
select="#000000"
|
||||
active="#000000"
|
||||
show_colored_constraints="FALSE">
|
||||
</ThemeBoneColorSet>
|
||||
</bone_color_sets>
|
||||
</Theme>
|
||||
<ThemeStyle>
|
||||
<panel_title>
|
||||
<ThemeFontStyle points="12"
|
||||
font_kerning_style="FITTED"
|
||||
shadow="1"
|
||||
shadow_offset_x="0"
|
||||
shadow_offset_y="-1"
|
||||
shadow_alpha="0.15"
|
||||
shadow_value="1">
|
||||
</ThemeFontStyle>
|
||||
</panel_title>
|
||||
<widget_label>
|
||||
<ThemeFontStyle points="11"
|
||||
font_kerning_style="FITTED"
|
||||
shadow="3"
|
||||
shadow_offset_x="0"
|
||||
shadow_offset_y="-1"
|
||||
shadow_alpha="0.15"
|
||||
shadow_value="1">
|
||||
</ThemeFontStyle>
|
||||
</widget_label>
|
||||
<widget>
|
||||
<ThemeFontStyle points="11"
|
||||
font_kerning_style="FITTED"
|
||||
shadow="0"
|
||||
shadow_offset_x="0"
|
||||
shadow_offset_y="0"
|
||||
shadow_alpha="0.25"
|
||||
shadow_value="0">
|
||||
</ThemeFontStyle>
|
||||
</widget>
|
||||
</ThemeStyle>
|
||||
</bpy>
|
||||
1173
release/scripts/presets/interface_theme/default++.xml
Normal file
1173
release/scripts/presets/interface_theme/default++.xml
Normal file
@@ -0,0 +1,1173 @@
|
||||
<bpy>
|
||||
<Theme>
|
||||
<user_interface>
|
||||
<ThemeUserInterface menu_shadow_fac="0.5"
|
||||
menu_shadow_width="12"
|
||||
icon_file=""
|
||||
icon_alpha="1"
|
||||
widget_emboss="#ffffff05"
|
||||
axis_x="#ff6d66"
|
||||
axis_y="#90ff66"
|
||||
axis_z="#6693ff">
|
||||
<wcol_regular>
|
||||
<ThemeWidgetColors outline="#191919"
|
||||
inner="#999999ff"
|
||||
inner_sel="#646464ff"
|
||||
item="#191919ff"
|
||||
text="#000000"
|
||||
text_sel="#ffffff"
|
||||
show_shaded="FALSE"
|
||||
shadetop="0"
|
||||
shadedown="0">
|
||||
</ThemeWidgetColors>
|
||||
</wcol_regular>
|
||||
<wcol_tool>
|
||||
<ThemeWidgetColors outline="#191919"
|
||||
inner="#999999ff"
|
||||
inner_sel="#ff9b5bff"
|
||||
item="#191919ff"
|
||||
text="#000000"
|
||||
text_sel="#ffffff"
|
||||
show_shaded="TRUE"
|
||||
shadetop="15"
|
||||
shadedown="-15">
|
||||
</ThemeWidgetColors>
|
||||
</wcol_tool>
|
||||
<wcol_radio>
|
||||
<ThemeWidgetColors outline="#000000"
|
||||
inner="#4d4d4dff"
|
||||
inner_sel="#8ebaffff"
|
||||
item="#ffffffff"
|
||||
text="#ffffff"
|
||||
text_sel="#000000"
|
||||
show_shaded="TRUE"
|
||||
shadetop="15"
|
||||
shadedown="-15">
|
||||
</ThemeWidgetColors>
|
||||
</wcol_radio>
|
||||
<wcol_text>
|
||||
<ThemeWidgetColors outline="#191919"
|
||||
inner="#999999ff"
|
||||
inner_sel="#999999ff"
|
||||
item="#5a5a5aff"
|
||||
text="#000000"
|
||||
text_sel="#ffffff"
|
||||
show_shaded="TRUE"
|
||||
shadetop="0"
|
||||
shadedown="25">
|
||||
</ThemeWidgetColors>
|
||||
</wcol_text>
|
||||
<wcol_option>
|
||||
<ThemeWidgetColors outline="#000000"
|
||||
inner="#464646ff"
|
||||
inner_sel="#abef98ff"
|
||||
item="#161616ff"
|
||||
text="#000000"
|
||||
text_sel="#ffffff"
|
||||
show_shaded="TRUE"
|
||||
shadetop="15"
|
||||
shadedown="-15">
|
||||
</ThemeWidgetColors>
|
||||
</wcol_option>
|
||||
<wcol_toggle>
|
||||
<ThemeWidgetColors outline="#191919"
|
||||
inner="#999999ff"
|
||||
inner_sel="#646464ff"
|
||||
item="#191919ff"
|
||||
text="#000000"
|
||||
text_sel="#ffffff"
|
||||
show_shaded="FALSE"
|
||||
shadetop="0"
|
||||
shadedown="0">
|
||||
</ThemeWidgetColors>
|
||||
</wcol_toggle>
|
||||
<wcol_num>
|
||||
<ThemeWidgetColors outline="#191919"
|
||||
inner="#b4b4b4ff"
|
||||
inner_sel="#ff9b5bff"
|
||||
item="#5a5a5aff"
|
||||
text="#000000"
|
||||
text_sel="#000000"
|
||||
show_shaded="TRUE"
|
||||
shadetop="-20"
|
||||
shadedown="0">
|
||||
</ThemeWidgetColors>
|
||||
</wcol_num>
|
||||
<wcol_numslider>
|
||||
<ThemeWidgetColors outline="#191919"
|
||||
inner="#b4b4b4ff"
|
||||
inner_sel="#ff9b5bff"
|
||||
item="#808080ff"
|
||||
text="#000000"
|
||||
text_sel="#000000"
|
||||
show_shaded="TRUE"
|
||||
shadetop="-20"
|
||||
shadedown="0">
|
||||
</ThemeWidgetColors>
|
||||
</wcol_numslider>
|
||||
<wcol_box>
|
||||
<ThemeWidgetColors outline="#191919"
|
||||
inner="#808080ff"
|
||||
inner_sel="#646464ff"
|
||||
item="#191919ff"
|
||||
text="#000000"
|
||||
text_sel="#ffffff"
|
||||
show_shaded="FALSE"
|
||||
shadetop="0"
|
||||
shadedown="0">
|
||||
</ThemeWidgetColors>
|
||||
</wcol_box>
|
||||
<wcol_menu>
|
||||
<ThemeWidgetColors outline="#000000"
|
||||
inner="#464646ff"
|
||||
inner_sel="#464646ff"
|
||||
item="#ffffffff"
|
||||
text="#ffffff"
|
||||
text_sel="#cccccc"
|
||||
show_shaded="TRUE"
|
||||
shadetop="15"
|
||||
shadedown="-15">
|
||||
</ThemeWidgetColors>
|
||||
</wcol_menu>
|
||||
<wcol_pulldown>
|
||||
<ThemeWidgetColors outline="#000000"
|
||||
inner="#3f3f3fff"
|
||||
inner_sel="#8ebaffff"
|
||||
item="#ffffffff"
|
||||
text="#000000"
|
||||
text_sel="#000000"
|
||||
show_shaded="FALSE"
|
||||
shadetop="25"
|
||||
shadedown="-20">
|
||||
</ThemeWidgetColors>
|
||||
</wcol_pulldown>
|
||||
<wcol_menu_back>
|
||||
<ThemeWidgetColors outline="#000000"
|
||||
inner="#727272ff"
|
||||
inner_sel="#2d2d2de6"
|
||||
item="#646464ff"
|
||||
text="#000000"
|
||||
text_sel="#ffffff"
|
||||
show_shaded="FALSE"
|
||||
shadetop="25"
|
||||
shadedown="-20">
|
||||
</ThemeWidgetColors>
|
||||
</wcol_menu_back>
|
||||
<wcol_pie_menu>
|
||||
<ThemeWidgetColors outline="#0a0a0a"
|
||||
inner="#646464ff"
|
||||
inner_sel="#8ebaffff"
|
||||
item="#8ebaffff"
|
||||
text="#000000"
|
||||
text_sel="#000000"
|
||||
show_shaded="TRUE"
|
||||
shadetop="38"
|
||||
shadedown="-5">
|
||||
</ThemeWidgetColors>
|
||||
</wcol_pie_menu>
|
||||
<wcol_tooltip>
|
||||
<ThemeWidgetColors outline="#000000"
|
||||
inner="#191919e6"
|
||||
inner_sel="#2d2d2de6"
|
||||
item="#646464ff"
|
||||
text="#ffffff"
|
||||
text_sel="#ffffff"
|
||||
show_shaded="FALSE"
|
||||
shadetop="25"
|
||||
shadedown="-20">
|
||||
</ThemeWidgetColors>
|
||||
</wcol_tooltip>
|
||||
<wcol_menu_item>
|
||||
<ThemeWidgetColors outline="#000000"
|
||||
inner="#00000000"
|
||||
inner_sel="#8ebaffff"
|
||||
item="#646464ff"
|
||||
text="#000000"
|
||||
text_sel="#000000"
|
||||
show_shaded="TRUE"
|
||||
shadetop="38"
|
||||
shadedown="-5">
|
||||
</ThemeWidgetColors>
|
||||
</wcol_menu_item>
|
||||
<wcol_scroll>
|
||||
<ThemeWidgetColors outline="#323232"
|
||||
inner="#505050b4"
|
||||
inner_sel="#646464b4"
|
||||
item="#808080ff"
|
||||
text="#000000"
|
||||
text_sel="#ffffff"
|
||||
show_shaded="TRUE"
|
||||
shadetop="5"
|
||||
shadedown="-5">
|
||||
</ThemeWidgetColors>
|
||||
</wcol_scroll>
|
||||
<wcol_progress>
|
||||
<ThemeWidgetColors outline="#000000"
|
||||
inner="#bebebeff"
|
||||
inner_sel="#646464b4"
|
||||
item="#808080ff"
|
||||
text="#000000"
|
||||
text_sel="#ffffff"
|
||||
show_shaded="FALSE"
|
||||
shadetop="0"
|
||||
shadedown="0">
|
||||
</ThemeWidgetColors>
|
||||
</wcol_progress>
|
||||
<wcol_list_item>
|
||||
<ThemeWidgetColors outline="#000000"
|
||||
inner="#00000000"
|
||||
inner_sel="#8ebaffff"
|
||||
item="#5a5a5aff"
|
||||
text="#000000"
|
||||
text_sel="#000000"
|
||||
show_shaded="FALSE"
|
||||
shadetop="0"
|
||||
shadedown="0">
|
||||
</ThemeWidgetColors>
|
||||
</wcol_list_item>
|
||||
<wcol_state>
|
||||
<ThemeWidgetStateColors inner_anim="#73be4c"
|
||||
inner_anim_sel="#5aa633"
|
||||
inner_key="#f0eb64"
|
||||
inner_key_sel="#d7d34b"
|
||||
inner_driven="#b400ff"
|
||||
inner_driven_sel="#9900e6"
|
||||
blend="0.5">
|
||||
</ThemeWidgetStateColors>
|
||||
</wcol_state>
|
||||
</ThemeUserInterface>
|
||||
</user_interface>
|
||||
<view_3d>
|
||||
<ThemeView3D grid="#404040"
|
||||
clipping_border_3d="#323232ff"
|
||||
wire="#1a1a1a"
|
||||
wire_edit="#1a1a1a"
|
||||
gp_vertex="#000000"
|
||||
gp_vertex_select="#ff8500"
|
||||
gp_vertex_size="3"
|
||||
text_grease_pencil="#b5e61d"
|
||||
object_selected="#f15800"
|
||||
object_active="#ffaa40"
|
||||
object_grouped="#083008"
|
||||
object_grouped_active="#55bb55"
|
||||
text_keyframe="#ddd700"
|
||||
camera="#000000"
|
||||
empty="#000000"
|
||||
lamp="#00000028"
|
||||
speaker="#000000"
|
||||
vertex="#000000"
|
||||
vertex_select="#ff8500"
|
||||
vertex_size="5"
|
||||
vertex_unreferenced="#000000"
|
||||
edge_select="#ffa000"
|
||||
edge_seam="#db2512"
|
||||
edge_sharp="#00ffff"
|
||||
edge_crease="#cc0099"
|
||||
edge_facesel="#4b4b4b"
|
||||
freestyle_edge_mark="#7fff7f"
|
||||
face="#00000012"
|
||||
face_select="#ff85003c"
|
||||
face_dot="#ff8500"
|
||||
facedot_size="4"
|
||||
freestyle_face_mark="#7fff7f33"
|
||||
nurb_uline="#909000"
|
||||
nurb_vline="#803060"
|
||||
nurb_sel_uline="#f0ff40"
|
||||
nurb_sel_vline="#f090a0"
|
||||
act_spline="#db2512"
|
||||
handle_free="#000000"
|
||||
handle_auto="#909000"
|
||||
handle_vect="#409030"
|
||||
handle_sel_vect="#40c030"
|
||||
handle_align="#803060"
|
||||
handle_sel_free="#000000"
|
||||
handle_sel_auto="#f0ff40"
|
||||
handle_sel_align="#f090a0"
|
||||
lastsel_point="#ffffff"
|
||||
extra_edge_len="#200000"
|
||||
extra_edge_angle="#202000"
|
||||
extra_face_angle="#000080"
|
||||
extra_face_area="#002000"
|
||||
editmesh_active="#ffffff80"
|
||||
normal="#22dddd"
|
||||
vertex_normal="#2361dd"
|
||||
split_normal="#dd23dd"
|
||||
bone_pose="#50c8ff"
|
||||
bone_pose_active="#8cffff"
|
||||
bone_solid="#c8c8c8"
|
||||
bundle_solid="#c8c8c8"
|
||||
camera_path="#000000"
|
||||
skin_root="#b44d4d"
|
||||
view_overlay="#000000"
|
||||
transform="#ffffff"
|
||||
frame_current="#60c040"
|
||||
paint_curve_handle="#7fff7f7f"
|
||||
paint_curve_pivot="#ff7f7f7f"
|
||||
outline_width="3">
|
||||
<space>
|
||||
<ThemeSpaceGradient title="#000000"
|
||||
text="#000000"
|
||||
text_hi="#ffffff"
|
||||
header="#727272"
|
||||
header_text="#000000"
|
||||
header_text_hi="#ffffff"
|
||||
button="#727272ff"
|
||||
button_title="#000000"
|
||||
button_text="#000000"
|
||||
button_text_hi="#ffffff"
|
||||
tab_active="#727272"
|
||||
tab_inactive="#535353"
|
||||
tab_back="#404040ff"
|
||||
tab_outline="#3c3c3c">
|
||||
<gradients>
|
||||
<ThemeGradientColors show_grad="FALSE"
|
||||
gradient="#000000"
|
||||
high_gradient="#5a5a5a">
|
||||
</ThemeGradientColors>
|
||||
</gradients>
|
||||
<panelcolors>
|
||||
<ThemePanelColors header="#00000019"
|
||||
back="#72727280"
|
||||
show_header="FALSE"
|
||||
show_back="FALSE">
|
||||
</ThemePanelColors>
|
||||
</panelcolors>
|
||||
</ThemeSpaceGradient>
|
||||
</space>
|
||||
</ThemeView3D>
|
||||
</view_3d>
|
||||
<graph_editor>
|
||||
<ThemeGraphEditor grid="#5e5e5e"
|
||||
frame_current="#ff9b5b"
|
||||
window_sliders="#969696"
|
||||
channels_region="#707070"
|
||||
dopesheet_channel="#52606e"
|
||||
dopesheet_subchannel="#7c8996"
|
||||
channel_group="#4f6549"
|
||||
active_channels_group="#87b17d"
|
||||
vertex="#000000"
|
||||
vertex_select="#ffffff"
|
||||
vertex_size="6"
|
||||
vertex_unreferenced="#000000"
|
||||
handle_free="#000000"
|
||||
handle_auto="#909000"
|
||||
handle_vect="#409030"
|
||||
handle_sel_vect="#40c030"
|
||||
handle_align="#803060"
|
||||
handle_sel_free="#000000"
|
||||
handle_sel_auto="#f0ff40"
|
||||
handle_sel_align="#f090a0"
|
||||
handle_auto_clamped="#994030"
|
||||
handle_sel_auto_clamped="#f0af90"
|
||||
lastsel_point="#ffffff"
|
||||
handle_vertex="#000000"
|
||||
handle_vertex_select="#ffffff"
|
||||
handle_vertex_size="5">
|
||||
<space>
|
||||
<ThemeSpaceGeneric back="#6b6b6b"
|
||||
title="#000000"
|
||||
text="#000000"
|
||||
text_hi="#ffffff"
|
||||
header="#727272"
|
||||
header_text="#000000"
|
||||
header_text_hi="#ffffff"
|
||||
button="#727272ff"
|
||||
button_title="#000000"
|
||||
button_text="#000000"
|
||||
button_text_hi="#ffffff"
|
||||
tab_active="#727272"
|
||||
tab_inactive="#535353"
|
||||
tab_back="#404040ff"
|
||||
tab_outline="#3c3c3c">
|
||||
<panelcolors>
|
||||
<ThemePanelColors header="#00000019"
|
||||
back="#72727280"
|
||||
show_header="FALSE"
|
||||
show_back="FALSE">
|
||||
</ThemePanelColors>
|
||||
</panelcolors>
|
||||
</ThemeSpaceGeneric>
|
||||
</space>
|
||||
<space_list>
|
||||
<ThemeSpaceListGeneric list="#666666"
|
||||
list_title="#000000"
|
||||
list_text="#000000"
|
||||
list_text_hi="#ffffff">
|
||||
</ThemeSpaceListGeneric>
|
||||
</space_list>
|
||||
</ThemeGraphEditor>
|
||||
</graph_editor>
|
||||
<file_browser>
|
||||
<ThemeFileBrowser selected_file="#d8834d">
|
||||
<space>
|
||||
<ThemeSpaceGeneric back="#4c4c4c"
|
||||
title="#000000"
|
||||
text="#fafafa"
|
||||
text_hi="#0f0f0f"
|
||||
header="#727272"
|
||||
header_text="#000000"
|
||||
header_text_hi="#ffffff"
|
||||
button="#7272727f"
|
||||
button_title="#000000"
|
||||
button_text="#000000"
|
||||
button_text_hi="#ffffff"
|
||||
tab_active="#727272"
|
||||
tab_inactive="#535353"
|
||||
tab_back="#404040ff"
|
||||
tab_outline="#3c3c3c">
|
||||
<panelcolors>
|
||||
<ThemePanelColors header="#00000019"
|
||||
back="#72727280"
|
||||
show_header="FALSE"
|
||||
show_back="FALSE">
|
||||
</ThemePanelColors>
|
||||
</panelcolors>
|
||||
</ThemeSpaceGeneric>
|
||||
</space>
|
||||
</ThemeFileBrowser>
|
||||
</file_browser>
|
||||
<nla_editor>
|
||||
<ThemeNLAEditor grid="#5e5e5e"
|
||||
view_sliders="#969696"
|
||||
active_action="#cc701a66"
|
||||
active_action_unset="#9987614d"
|
||||
strips="#0c0a0a"
|
||||
strips_selected="#ff8c00"
|
||||
transition_strips="#1c2630"
|
||||
transition_strips_selected="#2e75db"
|
||||
meta_strips="#332642"
|
||||
meta_strips_selected="#692196"
|
||||
sound_strips="#2b3d3d"
|
||||
sound_strips_selected="#1f7a7a"
|
||||
tweak="#4df31a"
|
||||
tweak_duplicate="#d90000"
|
||||
keyframe_border="#000000ff"
|
||||
keyframe_border_selected="#000000ff"
|
||||
frame_current="#ff9b5b">
|
||||
<space>
|
||||
<ThemeSpaceGeneric back="#6b6b6b"
|
||||
title="#000000"
|
||||
text="#000000"
|
||||
text_hi="#ffffff"
|
||||
header="#727272"
|
||||
header_text="#000000"
|
||||
header_text_hi="#ffffff"
|
||||
button="#7272727f"
|
||||
button_title="#000000"
|
||||
button_text="#000000"
|
||||
button_text_hi="#ffffff"
|
||||
tab_active="#727272"
|
||||
tab_inactive="#535353"
|
||||
tab_back="#404040ff"
|
||||
tab_outline="#3c3c3c">
|
||||
<panelcolors>
|
||||
<ThemePanelColors header="#00000019"
|
||||
back="#72727280"
|
||||
show_header="FALSE"
|
||||
show_back="FALSE">
|
||||
</ThemePanelColors>
|
||||
</panelcolors>
|
||||
</ThemeSpaceGeneric>
|
||||
</space>
|
||||
<space_list>
|
||||
<ThemeSpaceListGeneric list="#666666"
|
||||
list_title="#000000"
|
||||
list_text="#000000"
|
||||
list_text_hi="#ffffff">
|
||||
</ThemeSpaceListGeneric>
|
||||
</space_list>
|
||||
</ThemeNLAEditor>
|
||||
</nla_editor>
|
||||
<dopesheet_editor>
|
||||
<ThemeDopeSheet grid="#5e5e5e"
|
||||
frame_current="#ff9b5b"
|
||||
value_sliders="#000000"
|
||||
view_sliders="#969696"
|
||||
dopesheet_channel="#52606e"
|
||||
dopesheet_subchannel="#7c8996"
|
||||
channels="#707070"
|
||||
channels_selected="#60c040"
|
||||
channel_group="#4f6549"
|
||||
active_channels_group="#87b17d"
|
||||
long_key="#0c0a0a"
|
||||
long_key_selected="#ff8c00"
|
||||
keyframe="#e8e8e8"
|
||||
keyframe_selected="#ffbe32"
|
||||
keyframe_extreme="#e8b3cc"
|
||||
keyframe_extreme_selected="#f28080"
|
||||
keyframe_breakdown="#b3dbe8"
|
||||
keyframe_breakdown_selected="#54bfed"
|
||||
keyframe_jitter="#94e575"
|
||||
keyframe_jitter_selected="#61c042"
|
||||
keyframe_border="#000000ff"
|
||||
keyframe_border_selected="#000000ff"
|
||||
keyframe_scale_factor="1"
|
||||
summary="#cc701a66">
|
||||
<space>
|
||||
<ThemeSpaceGeneric back="#6b6b6b"
|
||||
title="#000000"
|
||||
text="#000000"
|
||||
text_hi="#ffffff"
|
||||
header="#727272"
|
||||
header_text="#000000"
|
||||
header_text_hi="#ffffff"
|
||||
button="#727272ff"
|
||||
button_title="#000000"
|
||||
button_text="#000000"
|
||||
button_text_hi="#ffffff"
|
||||
tab_active="#727272"
|
||||
tab_inactive="#535353"
|
||||
tab_back="#404040ff"
|
||||
tab_outline="#3c3c3c">
|
||||
<panelcolors>
|
||||
<ThemePanelColors header="#00000019"
|
||||
back="#72727280"
|
||||
show_header="FALSE"
|
||||
show_back="FALSE">
|
||||
</ThemePanelColors>
|
||||
</panelcolors>
|
||||
</ThemeSpaceGeneric>
|
||||
</space>
|
||||
<space_list>
|
||||
<ThemeSpaceListGeneric list="#666666"
|
||||
list_title="#000000"
|
||||
list_text="#000000"
|
||||
list_text_hi="#ffffff">
|
||||
</ThemeSpaceListGeneric>
|
||||
</space_list>
|
||||
</ThemeDopeSheet>
|
||||
</dopesheet_editor>
|
||||
<image_editor>
|
||||
<ThemeImageEditor gp_vertex="#000000"
|
||||
gp_vertex_select="#ff8500"
|
||||
gp_vertex_size="3"
|
||||
vertex="#000000"
|
||||
vertex_select="#ff8500"
|
||||
vertex_size="3"
|
||||
vertex_unreferenced="#000000"
|
||||
face="#ffffff0a"
|
||||
face_select="#ff85003c"
|
||||
face_dot="#ff8500"
|
||||
facedot_size="3"
|
||||
freestyle_face_mark="#7fff7f33"
|
||||
editmesh_active="#ffffff80"
|
||||
wire_edit="#c0c0c0"
|
||||
edge_select="#ff8500"
|
||||
scope_back="#0000004c"
|
||||
preview_stitch_face="#7f7f0033"
|
||||
preview_stitch_edge="#ff00ff33"
|
||||
preview_stitch_vert="#0000ff33"
|
||||
preview_stitch_stitchable="#00ff00ff"
|
||||
preview_stitch_unstitchable="#ff0000ff"
|
||||
preview_stitch_active="#e1d2c323"
|
||||
uv_shadow="#707070ff"
|
||||
uv_others="#606060ff"
|
||||
frame_current="#60c040"
|
||||
metadatabg="#000000"
|
||||
metadatatext="#000000"
|
||||
handle_free="#000000"
|
||||
handle_auto="#909000"
|
||||
handle_align="#803060"
|
||||
handle_sel_free="#000000"
|
||||
handle_sel_auto="#f0ff40"
|
||||
handle_sel_align="#f090a0"
|
||||
handle_auto_clamped="#000000"
|
||||
handle_sel_auto_clamped="#000000"
|
||||
handle_vertex="#000000"
|
||||
handle_vertex_select="#ffff00"
|
||||
handle_vertex_size="5"
|
||||
paint_curve_handle="#7fff7f7f"
|
||||
paint_curve_pivot="#ff7f7f7f">
|
||||
<space>
|
||||
<ThemeSpaceGeneric back="#353535"
|
||||
title="#000000"
|
||||
text="#000000"
|
||||
text_hi="#ffffff"
|
||||
header="#727272"
|
||||
header_text="#000000"
|
||||
header_text_hi="#ffffff"
|
||||
button="#727272ff"
|
||||
button_title="#000000"
|
||||
button_text="#000000"
|
||||
button_text_hi="#ffffff"
|
||||
tab_active="#727272"
|
||||
tab_inactive="#535353"
|
||||
tab_back="#404040ff"
|
||||
tab_outline="#3c3c3c">
|
||||
<panelcolors>
|
||||
<ThemePanelColors header="#00000019"
|
||||
back="#72727280"
|
||||
show_header="FALSE"
|
||||
show_back="FALSE">
|
||||
</ThemePanelColors>
|
||||
</panelcolors>
|
||||
</ThemeSpaceGeneric>
|
||||
</space>
|
||||
</ThemeImageEditor>
|
||||
</image_editor>
|
||||
<sequence_editor>
|
||||
<ThemeSequenceEditor gp_vertex="#000000"
|
||||
gp_vertex_select="#ff8500"
|
||||
gp_vertex_size="3"
|
||||
grid="#404040"
|
||||
window_sliders="#a0a0a0"
|
||||
movie_strip="#516987"
|
||||
movieclip_strip="#20208f"
|
||||
image_strip="#6d5881"
|
||||
scene_strip="#4e983e"
|
||||
audio_strip="#2e8f8f"
|
||||
effect_strip="#a9547c"
|
||||
transition_strip="#a25f6f"
|
||||
meta_strip="#6d9183"
|
||||
text_strip="#a29700"
|
||||
frame_current="#ff9b5b"
|
||||
keyframe="#ff8500"
|
||||
draw_action="#50c8ff"
|
||||
preview_back="#000000"
|
||||
metadatabg="#000000"
|
||||
metadatatext="#000000">
|
||||
<space>
|
||||
<ThemeSpaceGeneric back="#747474"
|
||||
title="#000000"
|
||||
text="#000000"
|
||||
text_hi="#ffffff"
|
||||
header="#727272"
|
||||
header_text="#000000"
|
||||
header_text_hi="#ffffff"
|
||||
button="#727272ff"
|
||||
button_title="#000000"
|
||||
button_text="#000000"
|
||||
button_text_hi="#ffffff"
|
||||
tab_active="#727272"
|
||||
tab_inactive="#535353"
|
||||
tab_back="#404040ff"
|
||||
tab_outline="#3c3c3c">
|
||||
<panelcolors>
|
||||
<ThemePanelColors header="#00000019"
|
||||
back="#72727280"
|
||||
show_header="FALSE"
|
||||
show_back="FALSE">
|
||||
</ThemePanelColors>
|
||||
</panelcolors>
|
||||
</ThemeSpaceGeneric>
|
||||
</space>
|
||||
</ThemeSequenceEditor>
|
||||
</sequence_editor>
|
||||
<properties>
|
||||
<ThemeProperties>
|
||||
<space>
|
||||
<ThemeSpaceGeneric back="#727272"
|
||||
title="#000000"
|
||||
text="#000000"
|
||||
text_hi="#ffffff"
|
||||
header="#727272"
|
||||
header_text="#000000"
|
||||
header_text_hi="#ffffff"
|
||||
button="#7272727f"
|
||||
button_title="#000000"
|
||||
button_text="#000000"
|
||||
button_text_hi="#ffffff"
|
||||
tab_active="#727272"
|
||||
tab_inactive="#535353"
|
||||
tab_back="#404040ff"
|
||||
tab_outline="#3c3c3c">
|
||||
<panelcolors>
|
||||
<ThemePanelColors header="#00000019"
|
||||
back="#72727280"
|
||||
show_header="FALSE"
|
||||
show_back="FALSE">
|
||||
</ThemePanelColors>
|
||||
</panelcolors>
|
||||
</ThemeSpaceGeneric>
|
||||
</space>
|
||||
</ThemeProperties>
|
||||
</properties>
|
||||
<text_editor>
|
||||
<ThemeTextEditor line_numbers_background="#404040"
|
||||
selected_text="#c67777"
|
||||
cursor="#ff0000"
|
||||
syntax_builtin="#800050"
|
||||
syntax_symbols="#4c4c4c"
|
||||
syntax_special="#5f5f00"
|
||||
syntax_preprocessor="#32008c"
|
||||
syntax_reserved="#8c3c00"
|
||||
syntax_comment="#006432"
|
||||
syntax_string="#640000"
|
||||
syntax_numbers="#0000c8">
|
||||
<space>
|
||||
<ThemeSpaceGeneric back="#999999"
|
||||
title="#000000"
|
||||
text="#000000"
|
||||
text_hi="#ffffff"
|
||||
header="#727272"
|
||||
header_text="#000000"
|
||||
header_text_hi="#ffffff"
|
||||
button="#7272727f"
|
||||
button_title="#000000"
|
||||
button_text="#000000"
|
||||
button_text_hi="#ffffff"
|
||||
tab_active="#727272"
|
||||
tab_inactive="#535353"
|
||||
tab_back="#404040ff"
|
||||
tab_outline="#3c3c3c">
|
||||
<panelcolors>
|
||||
<ThemePanelColors header="#00000019"
|
||||
back="#72727280"
|
||||
show_header="FALSE"
|
||||
show_back="FALSE">
|
||||
</ThemePanelColors>
|
||||
</panelcolors>
|
||||
</ThemeSpaceGeneric>
|
||||
</space>
|
||||
</ThemeTextEditor>
|
||||
</text_editor>
|
||||
<timeline>
|
||||
<ThemeTimeline grid="#5b5b5b"
|
||||
frame_current="#ff9b5b"
|
||||
time_keyframe="#ddd700"
|
||||
time_grease_pencil="#b5e61d">
|
||||
<space>
|
||||
<ThemeSpaceGeneric back="#727272"
|
||||
title="#000000"
|
||||
text="#000000"
|
||||
text_hi="#ffffff"
|
||||
header="#727272"
|
||||
header_text="#000000"
|
||||
header_text_hi="#ffffff"
|
||||
button="#7272727f"
|
||||
button_title="#000000"
|
||||
button_text="#000000"
|
||||
button_text_hi="#ffffff"
|
||||
tab_active="#727272"
|
||||
tab_inactive="#535353"
|
||||
tab_back="#404040ff"
|
||||
tab_outline="#3c3c3c">
|
||||
<panelcolors>
|
||||
<ThemePanelColors header="#00000019"
|
||||
back="#72727280"
|
||||
show_header="FALSE"
|
||||
show_back="FALSE">
|
||||
</ThemePanelColors>
|
||||
</panelcolors>
|
||||
</ThemeSpaceGeneric>
|
||||
</space>
|
||||
</ThemeTimeline>
|
||||
</timeline>
|
||||
<node_editor>
|
||||
<ThemeNodeEditor gp_vertex="#000000"
|
||||
gp_vertex_select="#ff8500"
|
||||
gp_vertex_size="3"
|
||||
node_selected="#f15800"
|
||||
node_active="#ffaa40"
|
||||
wire="#000000"
|
||||
wire_inner="#737373"
|
||||
wire_select="#ffffff"
|
||||
selected_text="#7f7070"
|
||||
node_backdrop="#9b9b9be6"
|
||||
converter_node="#686a75"
|
||||
color_node="#6c696f"
|
||||
group_node="#69756e"
|
||||
group_socket_node="#dfca35"
|
||||
frame_node="#9b9b9ba0"
|
||||
matte_node="#977474"
|
||||
distor_node="#749797"
|
||||
noodle_curving="5"
|
||||
input_node="#646464"
|
||||
output_node="#646464"
|
||||
filter_node="#6c696f"
|
||||
vector_node="#6c696f"
|
||||
texture_node="#6c696f"
|
||||
shader_node="#6c696f"
|
||||
script_node="#6c696f"
|
||||
pattern_node="#6c696f"
|
||||
layout_node="#6c696f">
|
||||
<space>
|
||||
<ThemeSpaceGeneric back="#393939"
|
||||
title="#000000"
|
||||
text="#000000"
|
||||
text_hi="#ffffff"
|
||||
header="#727272"
|
||||
header_text="#000000"
|
||||
header_text_hi="#ffffff"
|
||||
button="#727272ff"
|
||||
button_title="#000000"
|
||||
button_text="#000000"
|
||||
button_text_hi="#ffffff"
|
||||
tab_active="#727272"
|
||||
tab_inactive="#535353"
|
||||
tab_back="#404040ff"
|
||||
tab_outline="#3c3c3c">
|
||||
<panelcolors>
|
||||
<ThemePanelColors header="#00000019"
|
||||
back="#72727280"
|
||||
show_header="FALSE"
|
||||
show_back="FALSE">
|
||||
</ThemePanelColors>
|
||||
</panelcolors>
|
||||
</ThemeSpaceGeneric>
|
||||
</space>
|
||||
<space_list>
|
||||
<ThemeSpaceListGeneric list="#a5a5a5"
|
||||
list_title="#000000"
|
||||
list_text="#000000"
|
||||
list_text_hi="#ffffff">
|
||||
</ThemeSpaceListGeneric>
|
||||
</space_list>
|
||||
</ThemeNodeEditor>
|
||||
</node_editor>
|
||||
<logic_editor>
|
||||
<ThemeLogicEditor>
|
||||
<space>
|
||||
<ThemeSpaceGeneric back="#646464"
|
||||
title="#000000"
|
||||
text="#000000"
|
||||
text_hi="#ffffff"
|
||||
header="#727272"
|
||||
header_text="#000000"
|
||||
header_text_hi="#ffffff"
|
||||
button="#727272ff"
|
||||
button_title="#000000"
|
||||
button_text="#000000"
|
||||
button_text_hi="#ffffff"
|
||||
tab_active="#727272"
|
||||
tab_inactive="#535353"
|
||||
tab_back="#404040ff"
|
||||
tab_outline="#3c3c3c">
|
||||
<panelcolors>
|
||||
<ThemePanelColors header="#00000019"
|
||||
back="#72727280"
|
||||
show_header="FALSE"
|
||||
show_back="FALSE">
|
||||
</ThemePanelColors>
|
||||
</panelcolors>
|
||||
</ThemeSpaceGeneric>
|
||||
</space>
|
||||
</ThemeLogicEditor>
|
||||
</logic_editor>
|
||||
<outliner>
|
||||
<ThemeOutliner match="#337f33"
|
||||
selected_highlight="#82878c">
|
||||
<space>
|
||||
<ThemeSpaceGeneric back="#727272"
|
||||
title="#000000"
|
||||
text="#000000"
|
||||
text_hi="#ffffff"
|
||||
header="#727272"
|
||||
header_text="#000000"
|
||||
header_text_hi="#ffffff"
|
||||
button="#7272727f"
|
||||
button_title="#000000"
|
||||
button_text="#000000"
|
||||
button_text_hi="#ffffff"
|
||||
tab_active="#727272"
|
||||
tab_inactive="#535353"
|
||||
tab_back="#404040ff"
|
||||
tab_outline="#3c3c3c">
|
||||
<panelcolors>
|
||||
<ThemePanelColors header="#00000019"
|
||||
back="#72727280"
|
||||
show_header="FALSE"
|
||||
show_back="FALSE">
|
||||
</ThemePanelColors>
|
||||
</panelcolors>
|
||||
</ThemeSpaceGeneric>
|
||||
</space>
|
||||
</ThemeOutliner>
|
||||
</outliner>
|
||||
<info>
|
||||
<ThemeInfo info_selected="#8ebaff"
|
||||
info_selected_text="#000000"
|
||||
info_error="#e24242"
|
||||
info_error_text="#000000"
|
||||
info_warning="#f18a48"
|
||||
info_warning_text="#000000"
|
||||
info_info="#00aa00"
|
||||
info_info_text="#000000"
|
||||
info_debug="#c4c4c4"
|
||||
info_debug_text="#000000">
|
||||
<space>
|
||||
<ThemeSpaceGeneric back="#727272"
|
||||
title="#000000"
|
||||
text="#000000"
|
||||
text_hi="#ffffff"
|
||||
header="#727272"
|
||||
header_text="#000000"
|
||||
header_text_hi="#ffffff"
|
||||
button="#7272727f"
|
||||
button_title="#000000"
|
||||
button_text="#000000"
|
||||
button_text_hi="#ffffff"
|
||||
tab_active="#727272"
|
||||
tab_inactive="#535353"
|
||||
tab_back="#404040ff"
|
||||
tab_outline="#3c3c3c">
|
||||
<panelcolors>
|
||||
<ThemePanelColors header="#00000019"
|
||||
back="#72727280"
|
||||
show_header="FALSE"
|
||||
show_back="FALSE">
|
||||
</ThemePanelColors>
|
||||
</panelcolors>
|
||||
</ThemeSpaceGeneric>
|
||||
</space>
|
||||
</ThemeInfo>
|
||||
</info>
|
||||
<user_preferences>
|
||||
<ThemeUserPreferences>
|
||||
<space>
|
||||
<ThemeSpaceGeneric back="#727272"
|
||||
title="#000000"
|
||||
text="#000000"
|
||||
text_hi="#ffffff"
|
||||
header="#727272"
|
||||
header_text="#000000"
|
||||
header_text_hi="#ffffff"
|
||||
button="#7272727f"
|
||||
button_title="#000000"
|
||||
button_text="#000000"
|
||||
button_text_hi="#ffffff"
|
||||
tab_active="#727272"
|
||||
tab_inactive="#535353"
|
||||
tab_back="#404040ff"
|
||||
tab_outline="#3c3c3c">
|
||||
<panelcolors>
|
||||
<ThemePanelColors header="#00000019"
|
||||
back="#72727280"
|
||||
show_header="FALSE"
|
||||
show_back="FALSE">
|
||||
</ThemePanelColors>
|
||||
</panelcolors>
|
||||
</ThemeSpaceGeneric>
|
||||
</space>
|
||||
</ThemeUserPreferences>
|
||||
</user_preferences>
|
||||
<console>
|
||||
<ThemeConsole line_output="#6080ff"
|
||||
line_input="#ffffff"
|
||||
line_info="#00aa00"
|
||||
line_error="#dc6060"
|
||||
cursor="#dc6060"
|
||||
select="#ffffff30">
|
||||
<space>
|
||||
<ThemeSpaceGeneric back="#000000"
|
||||
title="#000000"
|
||||
text="#000000"
|
||||
text_hi="#ffffff"
|
||||
header="#727272"
|
||||
header_text="#000000"
|
||||
header_text_hi="#ffffff"
|
||||
button="#7272727f"
|
||||
button_title="#000000"
|
||||
button_text="#000000"
|
||||
button_text_hi="#ffffff"
|
||||
tab_active="#727272"
|
||||
tab_inactive="#535353"
|
||||
tab_back="#404040ff"
|
||||
tab_outline="#3c3c3c">
|
||||
<panelcolors>
|
||||
<ThemePanelColors header="#00000019"
|
||||
back="#72727280"
|
||||
show_header="FALSE"
|
||||
show_back="FALSE">
|
||||
</ThemePanelColors>
|
||||
</panelcolors>
|
||||
</ThemeSpaceGeneric>
|
||||
</space>
|
||||
</ThemeConsole>
|
||||
</console>
|
||||
<clip_editor>
|
||||
<ThemeClipEditor gp_vertex="#000000"
|
||||
gp_vertex_select="#ff8500"
|
||||
gp_vertex_size="3"
|
||||
marker_outline="#000000"
|
||||
marker="#37a879"
|
||||
active_marker="#ffffff"
|
||||
selected_marker="#eeee0d"
|
||||
disabled_marker="#8d4141"
|
||||
locked_marker="#7f7f7f"
|
||||
path_before="#ff6d66"
|
||||
path_after="#8ebaff"
|
||||
frame_current="#ff9b5b"
|
||||
strips="#0c0a0a"
|
||||
strips_selected="#ff8c00"
|
||||
handle_free="#000000"
|
||||
handle_auto="#909000"
|
||||
handle_align="#803060"
|
||||
handle_sel_free="#000000"
|
||||
handle_sel_auto="#f0ff40"
|
||||
handle_sel_align="#f090a0"
|
||||
handle_auto_clamped="#000000"
|
||||
handle_sel_auto_clamped="#000000"
|
||||
handle_vertex="#000000"
|
||||
handle_vertex_select="#f48a48"
|
||||
handle_vertex_size="5">
|
||||
<space>
|
||||
<ThemeSpaceGeneric back="#393939"
|
||||
title="#000000"
|
||||
text="#000000"
|
||||
text_hi="#ffffff"
|
||||
header="#727272"
|
||||
header_text="#000000"
|
||||
header_text_hi="#ffffff"
|
||||
button="#727272ff"
|
||||
button_title="#000000"
|
||||
button_text="#000000"
|
||||
button_text_hi="#ffffff"
|
||||
tab_active="#727272"
|
||||
tab_inactive="#535353"
|
||||
tab_back="#404040ff"
|
||||
tab_outline="#3c3c3c">
|
||||
<panelcolors>
|
||||
<ThemePanelColors header="#00000019"
|
||||
back="#72727280"
|
||||
show_header="FALSE"
|
||||
show_back="FALSE">
|
||||
</ThemePanelColors>
|
||||
</panelcolors>
|
||||
</ThemeSpaceGeneric>
|
||||
</space>
|
||||
<space_list>
|
||||
<ThemeSpaceListGeneric list="#666666"
|
||||
list_title="#000000"
|
||||
list_text="#000000"
|
||||
list_text_hi="#ffffff">
|
||||
</ThemeSpaceListGeneric>
|
||||
</space_list>
|
||||
</ThemeClipEditor>
|
||||
</clip_editor>
|
||||
<bone_color_sets>
|
||||
<ThemeBoneColorSet normal="#9a0000"
|
||||
select="#bd1111"
|
||||
active="#f70a0a"
|
||||
show_colored_constraints="FALSE">
|
||||
</ThemeBoneColorSet>
|
||||
<ThemeBoneColorSet normal="#f74018"
|
||||
select="#f66913"
|
||||
active="#fa9900"
|
||||
show_colored_constraints="FALSE">
|
||||
</ThemeBoneColorSet>
|
||||
<ThemeBoneColorSet normal="#1e9109"
|
||||
select="#59b70b"
|
||||
active="#83ef1d"
|
||||
show_colored_constraints="FALSE">
|
||||
</ThemeBoneColorSet>
|
||||
<ThemeBoneColorSet normal="#0a3694"
|
||||
select="#3667df"
|
||||
active="#5ec1ef"
|
||||
show_colored_constraints="FALSE">
|
||||
</ThemeBoneColorSet>
|
||||
<ThemeBoneColorSet normal="#a9294e"
|
||||
select="#c1416a"
|
||||
active="#f05d91"
|
||||
show_colored_constraints="FALSE">
|
||||
</ThemeBoneColorSet>
|
||||
<ThemeBoneColorSet normal="#430c78"
|
||||
select="#543aa3"
|
||||
active="#8764d5"
|
||||
show_colored_constraints="FALSE">
|
||||
</ThemeBoneColorSet>
|
||||
<ThemeBoneColorSet normal="#24785a"
|
||||
select="#3c9579"
|
||||
active="#6fb6ab"
|
||||
show_colored_constraints="FALSE">
|
||||
</ThemeBoneColorSet>
|
||||
<ThemeBoneColorSet normal="#4b707c"
|
||||
select="#6a8691"
|
||||
active="#9bc2cd"
|
||||
show_colored_constraints="FALSE">
|
||||
</ThemeBoneColorSet>
|
||||
<ThemeBoneColorSet normal="#f4c90c"
|
||||
select="#eec236"
|
||||
active="#f3ff00"
|
||||
show_colored_constraints="FALSE">
|
||||
</ThemeBoneColorSet>
|
||||
<ThemeBoneColorSet normal="#1e2024"
|
||||
select="#484c56"
|
||||
active="#ffffff"
|
||||
show_colored_constraints="FALSE">
|
||||
</ThemeBoneColorSet>
|
||||
<ThemeBoneColorSet normal="#6f2f6a"
|
||||
select="#9845be"
|
||||
active="#d330d6"
|
||||
show_colored_constraints="FALSE">
|
||||
</ThemeBoneColorSet>
|
||||
<ThemeBoneColorSet normal="#6c8e22"
|
||||
select="#7fb022"
|
||||
active="#bbef5b"
|
||||
show_colored_constraints="FALSE">
|
||||
</ThemeBoneColorSet>
|
||||
<ThemeBoneColorSet normal="#8d8d8d"
|
||||
select="#b0b0b0"
|
||||
active="#dedede"
|
||||
show_colored_constraints="FALSE">
|
||||
</ThemeBoneColorSet>
|
||||
<ThemeBoneColorSet normal="#834326"
|
||||
select="#8b5811"
|
||||
active="#bd6a11"
|
||||
show_colored_constraints="FALSE">
|
||||
</ThemeBoneColorSet>
|
||||
<ThemeBoneColorSet normal="#08310e"
|
||||
select="#1c430b"
|
||||
active="#34622b"
|
||||
show_colored_constraints="FALSE">
|
||||
</ThemeBoneColorSet>
|
||||
<ThemeBoneColorSet normal="#000000"
|
||||
select="#000000"
|
||||
active="#000000"
|
||||
show_colored_constraints="FALSE">
|
||||
</ThemeBoneColorSet>
|
||||
<ThemeBoneColorSet normal="#000000"
|
||||
select="#000000"
|
||||
active="#000000"
|
||||
show_colored_constraints="FALSE">
|
||||
</ThemeBoneColorSet>
|
||||
<ThemeBoneColorSet normal="#000000"
|
||||
select="#000000"
|
||||
active="#000000"
|
||||
show_colored_constraints="FALSE">
|
||||
</ThemeBoneColorSet>
|
||||
<ThemeBoneColorSet normal="#000000"
|
||||
select="#000000"
|
||||
active="#000000"
|
||||
show_colored_constraints="FALSE">
|
||||
</ThemeBoneColorSet>
|
||||
<ThemeBoneColorSet normal="#000000"
|
||||
select="#000000"
|
||||
active="#000000"
|
||||
show_colored_constraints="FALSE">
|
||||
</ThemeBoneColorSet>
|
||||
</bone_color_sets>
|
||||
</Theme>
|
||||
<ThemeStyle>
|
||||
<panel_title>
|
||||
<ThemeFontStyle points="12"
|
||||
font_kerning_style="FITTED"
|
||||
shadow="1"
|
||||
shadow_offset_x="0"
|
||||
shadow_offset_y="-1"
|
||||
shadow_alpha="0.15"
|
||||
shadow_value="1">
|
||||
</ThemeFontStyle>
|
||||
</panel_title>
|
||||
<widget_label>
|
||||
<ThemeFontStyle points="11"
|
||||
font_kerning_style="FITTED"
|
||||
shadow="3"
|
||||
shadow_offset_x="0"
|
||||
shadow_offset_y="-1"
|
||||
shadow_alpha="0.15"
|
||||
shadow_value="1">
|
||||
</ThemeFontStyle>
|
||||
</widget_label>
|
||||
<widget>
|
||||
<ThemeFontStyle points="11"
|
||||
font_kerning_style="FITTED"
|
||||
shadow="0"
|
||||
shadow_offset_x="0"
|
||||
shadow_offset_y="0"
|
||||
shadow_alpha="0.25"
|
||||
shadow_value="0">
|
||||
</ThemeFontStyle>
|
||||
</widget>
|
||||
</ThemeStyle>
|
||||
</bpy>
|
||||
1183
release/scripts/presets/interface_theme/modern_minimalist.xml
Normal file
1183
release/scripts/presets/interface_theme/modern_minimalist.xml
Normal file
@@ -0,0 +1,1183 @@
|
||||
<bpy>
|
||||
<Theme>
|
||||
<user_interface>
|
||||
<ThemeUserInterface menu_shadow_fac="0.01"
|
||||
menu_shadow_width="16"
|
||||
icon_file=""
|
||||
icon_alpha="1"
|
||||
widget_emboss="#ffffff00"
|
||||
axis_x="#dc0000"
|
||||
axis_y="#00dc00"
|
||||
axis_z="#0000dc">
|
||||
<wcol_regular>
|
||||
<ThemeWidgetColors outline="#333333"
|
||||
inner="#2d2d2dff"
|
||||
inner_sel="#607f9eff"
|
||||
item="#ffffffff"
|
||||
text="#999999"
|
||||
text_sel="#ffffff"
|
||||
show_shaded="FALSE"
|
||||
shadetop="0"
|
||||
shadedown="0">
|
||||
</ThemeWidgetColors>
|
||||
</wcol_regular>
|
||||
<wcol_tool>
|
||||
<ThemeWidgetColors outline="#333333"
|
||||
inner="#2d2d2dff"
|
||||
inner_sel="#607f9eff"
|
||||
item="#ffffffff"
|
||||
text="#999999"
|
||||
text_sel="#ffffff"
|
||||
show_shaded="FALSE"
|
||||
shadetop="5"
|
||||
shadedown="0">
|
||||
</ThemeWidgetColors>
|
||||
</wcol_tool>
|
||||
<wcol_radio>
|
||||
<ThemeWidgetColors outline="#333333"
|
||||
inner="#2d2d2dff"
|
||||
inner_sel="#607f9eff"
|
||||
item="#ffffffff"
|
||||
text="#999999"
|
||||
text_sel="#ffffff"
|
||||
show_shaded="FALSE"
|
||||
shadetop="5"
|
||||
shadedown="0">
|
||||
</ThemeWidgetColors>
|
||||
</wcol_radio>
|
||||
<wcol_text>
|
||||
<ThemeWidgetColors outline="#333333"
|
||||
inner="#2d2d2dff"
|
||||
inner_sel="#607f9eff"
|
||||
item="#2d2d2dff"
|
||||
text="#999999"
|
||||
text_sel="#ffffff"
|
||||
show_shaded="FALSE"
|
||||
shadetop="5"
|
||||
shadedown="0">
|
||||
</ThemeWidgetColors>
|
||||
</wcol_text>
|
||||
<wcol_option>
|
||||
<ThemeWidgetColors outline="#333333"
|
||||
inner="#383838ff"
|
||||
inner_sel="#607f9eff"
|
||||
item="#e6e6e6ff"
|
||||
text="#666666"
|
||||
text_sel="#bfbfbf"
|
||||
show_shaded="FALSE"
|
||||
shadetop="0"
|
||||
shadedown="0">
|
||||
</ThemeWidgetColors>
|
||||
</wcol_option>
|
||||
<wcol_toggle>
|
||||
<ThemeWidgetColors outline="#262626"
|
||||
inner="#323232ff"
|
||||
inner_sel="#607f9eff"
|
||||
item="#ffffffff"
|
||||
text="#999999"
|
||||
text_sel="#ffffff"
|
||||
show_shaded="FALSE"
|
||||
shadetop="5"
|
||||
shadedown="0">
|
||||
</ThemeWidgetColors>
|
||||
</wcol_toggle>
|
||||
<wcol_num>
|
||||
<ThemeWidgetColors outline="#333333"
|
||||
inner="#2d2d2dff"
|
||||
inner_sel="#607f9eff"
|
||||
item="#4d4d4dff"
|
||||
text="#999999"
|
||||
text_sel="#ffffff"
|
||||
show_shaded="FALSE"
|
||||
shadetop="5"
|
||||
shadedown="0">
|
||||
</ThemeWidgetColors>
|
||||
</wcol_num>
|
||||
<wcol_numslider>
|
||||
<ThemeWidgetColors outline="#333333"
|
||||
inner="#404040ff"
|
||||
inner_sel="#607f9eff"
|
||||
item="#2d2d2dff"
|
||||
text="#999999"
|
||||
text_sel="#ffffff"
|
||||
show_shaded="FALSE"
|
||||
shadetop="-10"
|
||||
shadedown="0">
|
||||
</ThemeWidgetColors>
|
||||
</wcol_numslider>
|
||||
<wcol_box>
|
||||
<ThemeWidgetColors outline="#333333"
|
||||
inner="#212121ff"
|
||||
inner_sel="#607f9eff"
|
||||
item="#ffffffff"
|
||||
text="#999999"
|
||||
text_sel="#ffffff"
|
||||
show_shaded="FALSE"
|
||||
shadetop="0"
|
||||
shadedown="-7">
|
||||
</ThemeWidgetColors>
|
||||
</wcol_box>
|
||||
<wcol_menu>
|
||||
<ThemeWidgetColors outline="#333333"
|
||||
inner="#2d2d2dff"
|
||||
inner_sel="#607f9eff"
|
||||
item="#656565ff"
|
||||
text="#999999"
|
||||
text_sel="#ffffff"
|
||||
show_shaded="FALSE"
|
||||
shadetop="5"
|
||||
shadedown="5">
|
||||
</ThemeWidgetColors>
|
||||
</wcol_menu>
|
||||
<wcol_pulldown>
|
||||
<ThemeWidgetColors outline="#333333"
|
||||
inner="#2d2d2dff"
|
||||
inner_sel="#607f9eff"
|
||||
item="#ffffffff"
|
||||
text="#999999"
|
||||
text_sel="#ffffff"
|
||||
show_shaded="FALSE"
|
||||
shadetop="25"
|
||||
shadedown="0">
|
||||
</ThemeWidgetColors>
|
||||
</wcol_pulldown>
|
||||
<wcol_menu_back>
|
||||
<ThemeWidgetColors outline="#333333"
|
||||
inner="#202020ff"
|
||||
inner_sel="#607f9eff"
|
||||
item="#202020ff"
|
||||
text="#999999"
|
||||
text_sel="#ffffff"
|
||||
show_shaded="FALSE"
|
||||
shadetop="25"
|
||||
shadedown="-20">
|
||||
</ThemeWidgetColors>
|
||||
</wcol_menu_back>
|
||||
<wcol_pie_menu>
|
||||
<ThemeWidgetColors outline="#333333"
|
||||
inner="#202020ff"
|
||||
inner_sel="#607f9eff"
|
||||
item="#607f9eff"
|
||||
text="#999999"
|
||||
text_sel="#ffffff"
|
||||
show_shaded="FALSE"
|
||||
shadetop="10"
|
||||
shadedown="-10">
|
||||
</ThemeWidgetColors>
|
||||
</wcol_pie_menu>
|
||||
<wcol_tooltip>
|
||||
<ThemeWidgetColors outline="#333333"
|
||||
inner="#202020ff"
|
||||
inner_sel="#607f9eff"
|
||||
item="#646464ff"
|
||||
text="#607f9e"
|
||||
text_sel="#ffffff"
|
||||
show_shaded="FALSE"
|
||||
shadetop="25"
|
||||
shadedown="-20">
|
||||
</ThemeWidgetColors>
|
||||
</wcol_tooltip>
|
||||
<wcol_menu_item>
|
||||
<ThemeWidgetColors outline="#262626"
|
||||
inner="#202020ff"
|
||||
inner_sel="#607f9eff"
|
||||
item="#ffffffff"
|
||||
text="#999999"
|
||||
text_sel="#ffffff"
|
||||
show_shaded="FALSE"
|
||||
shadetop="0"
|
||||
shadedown="20">
|
||||
</ThemeWidgetColors>
|
||||
</wcol_menu_item>
|
||||
<wcol_scroll>
|
||||
<ThemeWidgetColors outline="#202020"
|
||||
inner="#1a1a1aff"
|
||||
inner_sel="#607f9eff"
|
||||
item="#262626ff"
|
||||
text="#999999"
|
||||
text_sel="#b0b0b0"
|
||||
show_shaded="FALSE"
|
||||
shadetop="0"
|
||||
shadedown="0">
|
||||
</ThemeWidgetColors>
|
||||
</wcol_scroll>
|
||||
<wcol_progress>
|
||||
<ThemeWidgetColors outline="#333333"
|
||||
inner="#404040ff"
|
||||
inner_sel="#404040ff"
|
||||
item="#607f9eff"
|
||||
text="#ffffff"
|
||||
text_sel="#ffffff"
|
||||
show_shaded="FALSE"
|
||||
shadetop="0"
|
||||
shadedown="0">
|
||||
</ThemeWidgetColors>
|
||||
</wcol_progress>
|
||||
<wcol_list_item>
|
||||
<ThemeWidgetColors outline="#323232"
|
||||
inner="#36363600"
|
||||
inner_sel="#607f9eff"
|
||||
item="#323232ff"
|
||||
text="#999999"
|
||||
text_sel="#ffffff"
|
||||
show_shaded="TRUE"
|
||||
shadetop="0"
|
||||
shadedown="-10">
|
||||
</ThemeWidgetColors>
|
||||
</wcol_list_item>
|
||||
<wcol_state>
|
||||
<ThemeWidgetStateColors inner_anim="#006482"
|
||||
inner_anim_sel="#006482"
|
||||
inner_key="#006600"
|
||||
inner_key_sel="#006600"
|
||||
inner_driven="#9100d7"
|
||||
inner_driven_sel="#9100d7"
|
||||
blend="1">
|
||||
</ThemeWidgetStateColors>
|
||||
</wcol_state>
|
||||
</ThemeUserInterface>
|
||||
</user_interface>
|
||||
<view_3d>
|
||||
<ThemeView3D grid="#1e1e1e"
|
||||
clipping_border_3d="#313131ff"
|
||||
wire="#666666"
|
||||
wire_edit="#bfbfbf"
|
||||
gp_vertex="#000000"
|
||||
gp_vertex_select="#ff8500"
|
||||
gp_vertex_size="3"
|
||||
text_grease_pencil="#b5e61d"
|
||||
object_selected="#00d9ff"
|
||||
object_active="#00ff90"
|
||||
object_grouped="#95592f"
|
||||
object_grouped_active="#009652"
|
||||
text_keyframe="#ddd700"
|
||||
camera="#8d8c8d"
|
||||
empty="#8d8c8d"
|
||||
lamp="#8d8c8d40"
|
||||
speaker="#8d8c8d"
|
||||
vertex="#bfbfbf"
|
||||
vertex_select="#00bdff"
|
||||
vertex_size="7"
|
||||
vertex_unreferenced="#000000"
|
||||
edge_select="#00c0ff"
|
||||
edge_seam="#ffe200"
|
||||
edge_sharp="#fb00ff"
|
||||
edge_crease="#ff0f00"
|
||||
edge_facesel="#4b4b4b"
|
||||
freestyle_edge_mark="#ff7d00"
|
||||
face="#26262680"
|
||||
face_select="#0094ff80"
|
||||
face_dot="#00b5ff"
|
||||
facedot_size="3"
|
||||
freestyle_face_mark="#ff8a0433"
|
||||
nurb_uline="#7b807e"
|
||||
nurb_vline="#fff8f4"
|
||||
nurb_sel_uline="#00bdff"
|
||||
nurb_sel_vline="#f0deeb"
|
||||
act_spline="#666666"
|
||||
handle_free="#9c003a"
|
||||
handle_auto="#805c00"
|
||||
handle_vect="#b035b1"
|
||||
handle_sel_vect="#00bdff"
|
||||
handle_align="#404080"
|
||||
handle_sel_free="#00bdff"
|
||||
handle_sel_auto="#00bdff"
|
||||
handle_sel_align="#00bdff"
|
||||
lastsel_point="#00ff12"
|
||||
extra_edge_len="#fff3fa"
|
||||
extra_edge_angle="#fff200"
|
||||
extra_face_angle="#009aff"
|
||||
extra_face_area="#000000"
|
||||
editmesh_active="#00ff12ff"
|
||||
normal="#22dddd"
|
||||
vertex_normal="#225dd4"
|
||||
split_normal="#dd23dd"
|
||||
bone_pose="#00b8ff"
|
||||
bone_pose_active="#00ff12"
|
||||
bone_solid="#bab5bc"
|
||||
bundle_solid="#c8c8c8"
|
||||
camera_path="#4d4d4d"
|
||||
skin_root="#000000"
|
||||
view_overlay="#000000"
|
||||
transform="#ffffff"
|
||||
frame_current="#60c040"
|
||||
paint_curve_handle="#7fff7f7f"
|
||||
paint_curve_pivot="#ff7f7f7f"
|
||||
outline_width="3">
|
||||
<space>
|
||||
<ThemeSpaceGradient title="#000000"
|
||||
text="#e4e4e4"
|
||||
text_hi="#b4b4b4"
|
||||
header="#202020"
|
||||
header_text="#bababa"
|
||||
header_text_hi="#ffffff"
|
||||
button="#262626f9"
|
||||
button_title="#c7c7c7"
|
||||
button_text="#b4b4b4"
|
||||
button_text_hi="#3b3b3b"
|
||||
tab_active="#262626"
|
||||
tab_inactive="#1a1a1a"
|
||||
tab_back="#1a1a1aff"
|
||||
tab_outline="#1a1a1a">
|
||||
<gradients>
|
||||
<ThemeGradientColors show_grad="FALSE"
|
||||
gradient="#232323"
|
||||
high_gradient="#333333">
|
||||
</ThemeGradientColors>
|
||||
</gradients>
|
||||
<panelcolors>
|
||||
<ThemePanelColors header="#26262600"
|
||||
back="#202020ff"
|
||||
show_header="TRUE"
|
||||
show_back="FALSE">
|
||||
</ThemePanelColors>
|
||||
</panelcolors>
|
||||
</ThemeSpaceGradient>
|
||||
</space>
|
||||
</ThemeView3D>
|
||||
</view_3d>
|
||||
<graph_editor>
|
||||
<ThemeGraphEditor grid="#323232"
|
||||
frame_current="#4291dc"
|
||||
window_sliders="#808080"
|
||||
channels_region="#707070"
|
||||
dopesheet_channel="#6c3229"
|
||||
dopesheet_subchannel="#2d4459"
|
||||
channel_group="#262626"
|
||||
active_channels_group="#00b264"
|
||||
vertex="#808080"
|
||||
vertex_select="#00ffff"
|
||||
vertex_size="6"
|
||||
vertex_unreferenced="#404040"
|
||||
handle_free="#000000"
|
||||
handle_auto="#8d8e90"
|
||||
handle_vect="#38b238"
|
||||
handle_sel_vect="#148bce"
|
||||
handle_align="#b6b5b6"
|
||||
handle_sel_free="#148bce"
|
||||
handle_sel_auto="#fdfffc"
|
||||
handle_sel_align="#148bce"
|
||||
handle_auto_clamped="#7e7e7e"
|
||||
handle_sel_auto_clamped="#148bce"
|
||||
lastsel_point="#f2f0ff"
|
||||
handle_vertex="#8d8e90"
|
||||
handle_vertex_select="#ffffff"
|
||||
handle_vertex_size="6">
|
||||
<space>
|
||||
<ThemeSpaceGeneric back="#262626"
|
||||
title="#ffffff"
|
||||
text="#ffffff"
|
||||
text_hi="#fcfcfc"
|
||||
header="#202020"
|
||||
header_text="#ffffff"
|
||||
header_text_hi="#bababa"
|
||||
button="#262626f2"
|
||||
button_title="#c7c7c7"
|
||||
button_text="#b4b4b4"
|
||||
button_text_hi="#ffffff"
|
||||
tab_active="#262626"
|
||||
tab_inactive="#1a1a1a"
|
||||
tab_back="#1a1a1aff"
|
||||
tab_outline="#1a1a1a">
|
||||
<panelcolors>
|
||||
<ThemePanelColors header="#00000000"
|
||||
back="#202020ff"
|
||||
show_header="TRUE"
|
||||
show_back="FALSE">
|
||||
</ThemePanelColors>
|
||||
</panelcolors>
|
||||
</ThemeSpaceGeneric>
|
||||
</space>
|
||||
<space_list>
|
||||
<ThemeSpaceListGeneric list="#1a1a1a"
|
||||
list_title="#919191"
|
||||
list_text="#999999"
|
||||
list_text_hi="#ffffff">
|
||||
</ThemeSpaceListGeneric>
|
||||
</space_list>
|
||||
</ThemeGraphEditor>
|
||||
</graph_editor>
|
||||
<file_browser>
|
||||
<ThemeFileBrowser selected_file="#607f9e"
|
||||
scrollbar="#a0a0a0"
|
||||
scroll_handle="#7f7070"
|
||||
active_file="#ffffff"
|
||||
active_file_text="#ffffff">
|
||||
<space>
|
||||
<ThemeSpaceGeneric back="#1a1a1a"
|
||||
title="#e4e4e4"
|
||||
text="#cacaca"
|
||||
text_hi="#0f0f0f"
|
||||
header="#202020"
|
||||
header_text="#8b8b8b"
|
||||
header_text_hi="#ffffff"
|
||||
button="#262626ff"
|
||||
button_title="#c7c7c7"
|
||||
button_text="#e4e4e4"
|
||||
button_text_hi="#ffffff"
|
||||
tab_active="#262626"
|
||||
tab_inactive="#1a1a1a"
|
||||
tab_back="#1a1a1aff"
|
||||
tab_outline="#1a1a1a">
|
||||
<panelcolors>
|
||||
<ThemePanelColors header="#00000000"
|
||||
back="#202020ff"
|
||||
show_header="TRUE"
|
||||
show_back="FALSE">
|
||||
</ThemePanelColors>
|
||||
</panelcolors>
|
||||
</ThemeSpaceGeneric>
|
||||
</space>
|
||||
<space_list>
|
||||
<ThemeSpaceListGeneric list="#202020"
|
||||
list_title="#8b8b8b"
|
||||
list_text="#8b8b8b"
|
||||
list_text_hi="#ffffff">
|
||||
</ThemeSpaceListGeneric>
|
||||
</space_list>
|
||||
</ThemeFileBrowser>
|
||||
</file_browser>
|
||||
<nla_editor>
|
||||
<ThemeNLAEditor grid="#323232"
|
||||
view_sliders="#969696"
|
||||
active_action="#cc701a66"
|
||||
active_action_unset="#9987614d"
|
||||
strips="#0c0a0a"
|
||||
strips_selected="#ff8c00"
|
||||
transition_strips="#1c2630"
|
||||
transition_strips_selected="#2e75db"
|
||||
meta_strips="#332642"
|
||||
meta_strips_selected="#692196"
|
||||
sound_strips="#2b3d3d"
|
||||
sound_strips_selected="#1f7a7a"
|
||||
tweak="#4df31a"
|
||||
tweak_duplicate="#d90000"
|
||||
keyframe_border="#000000ff"
|
||||
keyframe_border_selected="#000000ff"
|
||||
frame_current="#4291dc">
|
||||
<space>
|
||||
<ThemeSpaceGeneric back="#262626"
|
||||
title="#ffffff"
|
||||
text="#ffffff"
|
||||
text_hi="#ffffff"
|
||||
header="#202020"
|
||||
header_text="#ffffff"
|
||||
header_text_hi="#b7b7b7"
|
||||
button="#444444f2"
|
||||
button_title="#c7c7c7"
|
||||
button_text="#b4b4b4"
|
||||
button_text_hi="#ffffff"
|
||||
tab_active="#262626"
|
||||
tab_inactive="#1a1a1a"
|
||||
tab_back="#1a1a1aff"
|
||||
tab_outline="#1a1a1a">
|
||||
<panelcolors>
|
||||
<ThemePanelColors header="#00000000"
|
||||
back="#202020ff"
|
||||
show_header="TRUE"
|
||||
show_back="FALSE">
|
||||
</ThemePanelColors>
|
||||
</panelcolors>
|
||||
</ThemeSpaceGeneric>
|
||||
</space>
|
||||
<space_list>
|
||||
<ThemeSpaceListGeneric list="#1a1a1a"
|
||||
list_title="#000000"
|
||||
list_text="#000000"
|
||||
list_text_hi="#ffffff">
|
||||
</ThemeSpaceListGeneric>
|
||||
</space_list>
|
||||
</ThemeNLAEditor>
|
||||
</nla_editor>
|
||||
<dopesheet_editor>
|
||||
<ThemeDopeSheet grid="#323232"
|
||||
frame_current="#4291dc"
|
||||
value_sliders="#000000"
|
||||
view_sliders="#000000"
|
||||
dopesheet_channel="#5d7b99"
|
||||
dopesheet_subchannel="#2d4459"
|
||||
channels="#6a6a6a"
|
||||
channels_selected="#0094ff"
|
||||
channel_group="#1a1a1a"
|
||||
active_channels_group="#00b264"
|
||||
long_key="#909090"
|
||||
long_key_selected="#4291dc"
|
||||
keyframe="#808080"
|
||||
keyframe_selected="#00ffff"
|
||||
keyframe_extreme="#fff6ff"
|
||||
keyframe_extreme_selected="#dedede"
|
||||
keyframe_breakdown="#b3dbe8"
|
||||
keyframe_breakdown_selected="#54bfed"
|
||||
keyframe_jitter="#dedcdc"
|
||||
keyframe_jitter_selected="#beb8c0"
|
||||
keyframe_border="#000000ff"
|
||||
keyframe_border_selected="#0056f2ff"
|
||||
summary="#66342fff">
|
||||
<space>
|
||||
<ThemeSpaceGeneric back="#262626"
|
||||
title="#ffffff"
|
||||
text="#ffffff"
|
||||
text_hi="#fcfcfc"
|
||||
header="#202020"
|
||||
header_text="#ffffff"
|
||||
header_text_hi="#b7b7b7"
|
||||
button="#262626f2"
|
||||
button_title="#c7c7c7"
|
||||
button_text="#b4b4b4"
|
||||
button_text_hi="#ffffff"
|
||||
tab_active="#262626"
|
||||
tab_inactive="#1a1a1a"
|
||||
tab_back="#1a1a1aff"
|
||||
tab_outline="#1a1a1a">
|
||||
<panelcolors>
|
||||
<ThemePanelColors header="#00000000"
|
||||
back="#202020ff"
|
||||
show_header="TRUE"
|
||||
show_back="FALSE">
|
||||
</ThemePanelColors>
|
||||
</panelcolors>
|
||||
</ThemeSpaceGeneric>
|
||||
</space>
|
||||
<space_list>
|
||||
<ThemeSpaceListGeneric list="#1a1a1a"
|
||||
list_title="#6a6a6a"
|
||||
list_text="#999999"
|
||||
list_text_hi="#ffffff">
|
||||
</ThemeSpaceListGeneric>
|
||||
</space_list>
|
||||
</ThemeDopeSheet>
|
||||
</dopesheet_editor>
|
||||
<image_editor>
|
||||
<ThemeImageEditor gp_vertex="#000000"
|
||||
gp_vertex_select="#ff8500"
|
||||
gp_vertex_size="3"
|
||||
vertex="#000000"
|
||||
vertex_select="#0094ff"
|
||||
vertex_size="3"
|
||||
vertex_unreferenced="#000000"
|
||||
face="#a47c5b0a"
|
||||
face_select="#005fa480"
|
||||
face_dot="#1fcbff"
|
||||
facedot_size="2"
|
||||
freestyle_face_mark="#7fff7f33"
|
||||
editmesh_active="#ffffff80"
|
||||
wire_edit="#5c5c5c"
|
||||
edge_select="#005fa4"
|
||||
scope_back="#0000004c"
|
||||
preview_stitch_face="#1242b026"
|
||||
preview_stitch_edge="#ff8500b2"
|
||||
preview_stitch_vert="#ff85007f"
|
||||
preview_stitch_stitchable="#00ff00ff"
|
||||
preview_stitch_unstitchable="#ff0000ff"
|
||||
preview_stitch_active="#e1d2c323"
|
||||
uv_shadow="#707070ff"
|
||||
uv_others="#606060ff"
|
||||
frame_current="#60c040"
|
||||
metadatabg="#000000"
|
||||
metadatatext="#ffffff"
|
||||
handle_free="#000000"
|
||||
handle_auto="#909000"
|
||||
handle_align="#803060"
|
||||
handle_sel_free="#000000"
|
||||
handle_sel_auto="#f0ff40"
|
||||
handle_sel_align="#f090a0"
|
||||
handle_auto_clamped="#000000"
|
||||
handle_sel_auto_clamped="#000000"
|
||||
handle_vertex="#000000"
|
||||
handle_vertex_select="#ffff00"
|
||||
handle_vertex_size="5"
|
||||
paint_curve_handle="#7fff7f7f"
|
||||
paint_curve_pivot="#ff7f7f7f">
|
||||
<space>
|
||||
<ThemeSpaceGeneric back="#1a1a1a"
|
||||
title="#ffffff"
|
||||
text="#8b8b8b"
|
||||
text_hi="#ffffff"
|
||||
header="#202020"
|
||||
header_text="#000000"
|
||||
header_text_hi="#b8b8b8"
|
||||
button="#262626f9"
|
||||
button_title="#c7c7c7"
|
||||
button_text="#b4b4b4"
|
||||
button_text_hi="#ffffff"
|
||||
tab_active="#262626"
|
||||
tab_inactive="#1a1a1a"
|
||||
tab_back="#1a1a1aff"
|
||||
tab_outline="#1a1a1a">
|
||||
<panelcolors>
|
||||
<ThemePanelColors header="#00000000"
|
||||
back="#202020ff"
|
||||
show_header="TRUE"
|
||||
show_back="FALSE">
|
||||
</ThemePanelColors>
|
||||
</panelcolors>
|
||||
</ThemeSpaceGeneric>
|
||||
</space>
|
||||
</ThemeImageEditor>
|
||||
</image_editor>
|
||||
<sequence_editor>
|
||||
<ThemeSequenceEditor gp_vertex="#000000"
|
||||
gp_vertex_select="#ff8500"
|
||||
gp_vertex_size="3"
|
||||
grid="#444444"
|
||||
window_sliders="#a0a0a0"
|
||||
movie_strip="#5794c3"
|
||||
movieclip_strip="#20208f"
|
||||
image_strip="#bdb7b6"
|
||||
scene_strip="#777777"
|
||||
audio_strip="#6057c3"
|
||||
effect_strip="#ffffff"
|
||||
transition_strip="#726d70"
|
||||
meta_strip="#6d9183"
|
||||
text_strip="#a29700"
|
||||
frame_current="#4291dc"
|
||||
keyframe="#00ff00"
|
||||
draw_action="#607f9e"
|
||||
preview_back="#101010"
|
||||
metadatabg="#000000"
|
||||
metadatatext="#ffffff">
|
||||
<space>
|
||||
<ThemeSpaceGeneric back="#262626"
|
||||
title="#e4e4e4"
|
||||
text="#ffffff"
|
||||
text_hi="#ffffff"
|
||||
header="#202020"
|
||||
header_text="#000000"
|
||||
header_text_hi="#b7b7b7"
|
||||
button="#262626f2"
|
||||
button_title="#c7c7c7"
|
||||
button_text="#b4b4b4"
|
||||
button_text_hi="#ffffff"
|
||||
tab_active="#262626"
|
||||
tab_inactive="#1a1a1a"
|
||||
tab_back="#1a1a1aff"
|
||||
tab_outline="#1a1a1a">
|
||||
<panelcolors>
|
||||
<ThemePanelColors header="#00000000"
|
||||
back="#202020ff"
|
||||
show_header="TRUE"
|
||||
show_back="FALSE">
|
||||
</ThemePanelColors>
|
||||
</panelcolors>
|
||||
</ThemeSpaceGeneric>
|
||||
</space>
|
||||
</ThemeSequenceEditor>
|
||||
</sequence_editor>
|
||||
<properties>
|
||||
<ThemeProperties>
|
||||
<space>
|
||||
<ThemeSpaceGeneric back="#262626"
|
||||
title="#c7c7c7"
|
||||
text="#b8b8b8"
|
||||
text_hi="#ffffff"
|
||||
header="#202020"
|
||||
header_text="#000000"
|
||||
header_text_hi="#ffffff"
|
||||
button="#727272f2"
|
||||
button_title="#c7c7c7"
|
||||
button_text="#969696"
|
||||
button_text_hi="#ffffff"
|
||||
tab_active="#262626"
|
||||
tab_inactive="#1a1a1a"
|
||||
tab_back="#1a1a1aff"
|
||||
tab_outline="#1a1a1a">
|
||||
<panelcolors>
|
||||
<ThemePanelColors header="#33333300"
|
||||
back="#202020ff"
|
||||
show_header="TRUE"
|
||||
show_back="FALSE">
|
||||
</ThemePanelColors>
|
||||
</panelcolors>
|
||||
</ThemeSpaceGeneric>
|
||||
</space>
|
||||
</ThemeProperties>
|
||||
</properties>
|
||||
<text_editor>
|
||||
<ThemeTextEditor line_numbers_background="#262626"
|
||||
selected_text="#607f9e"
|
||||
cursor="#8b8bff"
|
||||
syntax_builtin="#009eed"
|
||||
syntax_symbols="#607f9e"
|
||||
syntax_special="#009eed"
|
||||
syntax_preprocessor="#409090"
|
||||
syntax_reserved="#8c3c00"
|
||||
syntax_comment="#757575"
|
||||
syntax_string="#f0ad6d"
|
||||
syntax_numbers="#f0ad6d">
|
||||
<space>
|
||||
<ThemeSpaceGeneric back="#1a1a1a"
|
||||
title="#fefefe"
|
||||
text="#e7e7e7"
|
||||
text_hi="#ffffff"
|
||||
header="#202020"
|
||||
header_text="#ffffff"
|
||||
header_text_hi="#b7b7b7"
|
||||
button="#262626f2"
|
||||
button_title="#c7c7c7"
|
||||
button_text="#b4b4b4"
|
||||
button_text_hi="#ffffff"
|
||||
tab_active="#262626"
|
||||
tab_inactive="#1a1a1a"
|
||||
tab_back="#1a1a1aff"
|
||||
tab_outline="#1a1a1a">
|
||||
<panelcolors>
|
||||
<ThemePanelColors header="#00000000"
|
||||
back="#202020ff"
|
||||
show_header="TRUE"
|
||||
show_back="FALSE">
|
||||
</ThemePanelColors>
|
||||
</panelcolors>
|
||||
</ThemeSpaceGeneric>
|
||||
</space>
|
||||
</ThemeTextEditor>
|
||||
</text_editor>
|
||||
<timeline>
|
||||
<ThemeTimeline grid="#323232"
|
||||
frame_current="#4291dc"
|
||||
time_keyframe="#00ff00"
|
||||
time_grease_pencil="#00e695">
|
||||
<space>
|
||||
<ThemeSpaceGeneric back="#262626"
|
||||
title="#e4e4e4"
|
||||
text="#b8b8b8"
|
||||
text_hi="#ffffff"
|
||||
header="#202020"
|
||||
header_text="#000000"
|
||||
header_text_hi="#b8b8b8"
|
||||
button="#727272ff"
|
||||
button_title="#b4b4b4"
|
||||
button_text="#b4b4b4"
|
||||
button_text_hi="#ffffff"
|
||||
tab_active="#727272"
|
||||
tab_inactive="#333333"
|
||||
tab_back="#333333ff"
|
||||
tab_outline="#333333">
|
||||
<panelcolors>
|
||||
<ThemePanelColors header="#00000000"
|
||||
back="#444444ff"
|
||||
show_header="TRUE"
|
||||
show_back="FALSE">
|
||||
</ThemePanelColors>
|
||||
</panelcolors>
|
||||
</ThemeSpaceGeneric>
|
||||
</space>
|
||||
</ThemeTimeline>
|
||||
</timeline>
|
||||
<node_editor>
|
||||
<ThemeNodeEditor gp_vertex="#000000"
|
||||
gp_vertex_select="#e5d010"
|
||||
gp_vertex_size="3"
|
||||
node_selected="#00bdff"
|
||||
node_active="#00ff90"
|
||||
wire="#000000"
|
||||
wire_inner="#808080"
|
||||
wire_select="#00bdff"
|
||||
selected_text="#909090"
|
||||
node_backdrop="#5d5d5dff"
|
||||
converter_node="#292929"
|
||||
color_node="#292929"
|
||||
group_node="#363636"
|
||||
group_socket_node="#1f00c7"
|
||||
frame_node="#5d5d5dff"
|
||||
matte_node="#0076b6"
|
||||
distor_node="#292929"
|
||||
noodle_curving="3"
|
||||
input_node="#009e9e"
|
||||
output_node="#1f00c7"
|
||||
filter_node="#0076b6"
|
||||
vector_node="#292929"
|
||||
texture_node="#009e9e"
|
||||
shader_node="#0076b6"
|
||||
script_node="#0076b6"
|
||||
pattern_node="#008db6"
|
||||
layout_node="#50b1b6">
|
||||
<space>
|
||||
<ThemeSpaceGeneric back="#262626"
|
||||
title="#ffffff"
|
||||
text="#ffffff"
|
||||
text_hi="#ffffff"
|
||||
header="#202020"
|
||||
header_text="#cdcdcd"
|
||||
header_text_hi="#b7b7b7"
|
||||
button="#262626f2"
|
||||
button_title="#c7c7c7"
|
||||
button_text="#b4b4b4"
|
||||
button_text_hi="#ffffff"
|
||||
tab_active="#262626"
|
||||
tab_inactive="#1a1a1a"
|
||||
tab_back="#1a1a1aff"
|
||||
tab_outline="#1a1a1a">
|
||||
<panelcolors>
|
||||
<ThemePanelColors header="#00000000"
|
||||
back="#202020ff"
|
||||
show_header="TRUE"
|
||||
show_back="FALSE">
|
||||
</ThemePanelColors>
|
||||
</panelcolors>
|
||||
</ThemeSpaceGeneric>
|
||||
</space>
|
||||
<space_list>
|
||||
<ThemeSpaceListGeneric list="#a5a5a5"
|
||||
list_title="#000000"
|
||||
list_text="#000000"
|
||||
list_text_hi="#ffffff">
|
||||
</ThemeSpaceListGeneric>
|
||||
</space_list>
|
||||
</ThemeNodeEditor>
|
||||
</node_editor>
|
||||
<logic_editor>
|
||||
<ThemeLogicEditor>
|
||||
<space>
|
||||
<ThemeSpaceGeneric back="#262626"
|
||||
title="#ffffff"
|
||||
text="#c1c1c1"
|
||||
text_hi="#ffffff"
|
||||
header="#202020"
|
||||
header_text="#ffffff"
|
||||
header_text_hi="#b7b7b7"
|
||||
button="#262626f2"
|
||||
button_title="#c7c7c7"
|
||||
button_text="#727272"
|
||||
button_text_hi="#ffffff"
|
||||
tab_active="#262626"
|
||||
tab_inactive="#202020"
|
||||
tab_back="#202020ff"
|
||||
tab_outline="#202020">
|
||||
<panelcolors>
|
||||
<ThemePanelColors header="#00000000"
|
||||
back="#202020ff"
|
||||
show_header="TRUE"
|
||||
show_back="FALSE">
|
||||
</ThemePanelColors>
|
||||
</panelcolors>
|
||||
</ThemeSpaceGeneric>
|
||||
</space>
|
||||
</ThemeLogicEditor>
|
||||
</logic_editor>
|
||||
<outliner>
|
||||
<ThemeOutliner match="#337f33"
|
||||
selected_highlight="#607f9e">
|
||||
<space>
|
||||
<ThemeSpaceGeneric back="#1a1a1a"
|
||||
title="#e4e4e4"
|
||||
text="#cacaca"
|
||||
text_hi="#ffffff"
|
||||
header="#202020"
|
||||
header_text="#000000"
|
||||
header_text_hi="#ffffff"
|
||||
button="#727272f2"
|
||||
button_title="#c7c7c7"
|
||||
button_text="#000000"
|
||||
button_text_hi="#e4e4e4"
|
||||
tab_active="#727272"
|
||||
tab_inactive="#222222"
|
||||
tab_back="#222222ff"
|
||||
tab_outline="#222222">
|
||||
<panelcolors>
|
||||
<ThemePanelColors header="#00000000"
|
||||
back="#202020ff"
|
||||
show_header="TRUE"
|
||||
show_back="FALSE">
|
||||
</ThemePanelColors>
|
||||
</panelcolors>
|
||||
</ThemeSpaceGeneric>
|
||||
</space>
|
||||
</ThemeOutliner>
|
||||
</outliner>
|
||||
<info>
|
||||
<ThemeInfo info_selected="#607f9e"
|
||||
info_selected_text="#ffffff"
|
||||
info_error="#3b3b3b"
|
||||
info_error_text="#ff0000"
|
||||
info_warning="#3b3b3b"
|
||||
info_warning_text="#ffe100"
|
||||
info_info="#3b3b3b"
|
||||
info_info_text="#25ff00"
|
||||
info_debug="#c4c4c4"
|
||||
info_debug_text="#000000">
|
||||
<space>
|
||||
<ThemeSpaceGeneric back="#101010"
|
||||
title="#e4e4e4"
|
||||
text="#868686"
|
||||
text_hi="#ffffff"
|
||||
header="#202020"
|
||||
header_text="#ffffff"
|
||||
header_text_hi="#000000"
|
||||
button="#3b3b3bff"
|
||||
button_title="#c7c7c7"
|
||||
button_text="#000000"
|
||||
button_text_hi="#000000"
|
||||
tab_active="#727272"
|
||||
tab_inactive="#222222"
|
||||
tab_back="#222222ff"
|
||||
tab_outline="#222222">
|
||||
<panelcolors>
|
||||
<ThemePanelColors header="#00000000"
|
||||
back="#444444ff"
|
||||
show_header="TRUE"
|
||||
show_back="FALSE">
|
||||
</ThemePanelColors>
|
||||
</panelcolors>
|
||||
</ThemeSpaceGeneric>
|
||||
</space>
|
||||
</ThemeInfo>
|
||||
</info>
|
||||
<user_preferences>
|
||||
<ThemeUserPreferences>
|
||||
<space>
|
||||
<ThemeSpaceGeneric back="#262626"
|
||||
title="#e4e4e4"
|
||||
text="#b8b8b8"
|
||||
text_hi="#ffffff"
|
||||
header="#202020"
|
||||
header_text="#000000"
|
||||
header_text_hi="#ffffff"
|
||||
button="#727272ff"
|
||||
button_title="#c7c7c7"
|
||||
button_text="#000000"
|
||||
button_text_hi="#ffffff"
|
||||
tab_active="#262626"
|
||||
tab_inactive="#1a1a1a"
|
||||
tab_back="#1a1a1aff"
|
||||
tab_outline="#1a1a1a">
|
||||
<panelcolors>
|
||||
<ThemePanelColors header="#00000000"
|
||||
back="#202020ff"
|
||||
show_header="TRUE"
|
||||
show_back="FALSE">
|
||||
</ThemePanelColors>
|
||||
</panelcolors>
|
||||
</ThemeSpaceGeneric>
|
||||
</space>
|
||||
</ThemeUserPreferences>
|
||||
</user_preferences>
|
||||
<console>
|
||||
<ThemeConsole line_output="#aeaeff"
|
||||
line_input="#ffffff"
|
||||
line_info="#607f9e"
|
||||
line_error="#ff0019"
|
||||
cursor="#49ff78"
|
||||
select="#48488f80">
|
||||
<space>
|
||||
<ThemeSpaceGeneric back="#1a1a1a"
|
||||
title="#e4e4e4"
|
||||
text="#ffffff"
|
||||
text_hi="#ffffff"
|
||||
header="#202020"
|
||||
header_text="#000000"
|
||||
header_text_hi="#ffffff"
|
||||
button="#262626ff"
|
||||
button_title="#c7c7c7"
|
||||
button_text="#000000"
|
||||
button_text_hi="#ffffff"
|
||||
tab_active="#727272"
|
||||
tab_inactive="#4a4a4a"
|
||||
tab_back="#414141ff"
|
||||
tab_outline="#2d2d2d">
|
||||
<panelcolors>
|
||||
<ThemePanelColors header="#00000000"
|
||||
back="#202020ff"
|
||||
show_header="FALSE"
|
||||
show_back="FALSE">
|
||||
</ThemePanelColors>
|
||||
</panelcolors>
|
||||
</ThemeSpaceGeneric>
|
||||
</space>
|
||||
</ThemeConsole>
|
||||
</console>
|
||||
<clip_editor>
|
||||
<ThemeClipEditor gp_vertex="#000000"
|
||||
gp_vertex_select="#ff8500"
|
||||
gp_vertex_size="3"
|
||||
marker_outline="#000000"
|
||||
marker="#7f7f00"
|
||||
active_marker="#ffffff"
|
||||
selected_marker="#ffff00"
|
||||
disabled_marker="#7f0000"
|
||||
locked_marker="#7f7f7f"
|
||||
path_before="#ff0000"
|
||||
path_after="#0000ff"
|
||||
frame_current="#60c040"
|
||||
strips="#0c0a0a"
|
||||
strips_selected="#ff8c00"
|
||||
handle_free="#000000"
|
||||
handle_auto="#909000"
|
||||
handle_align="#803060"
|
||||
handle_sel_free="#000000"
|
||||
handle_sel_auto="#f0ff40"
|
||||
handle_sel_align="#f090a0"
|
||||
handle_auto_clamped="#000000"
|
||||
handle_sel_auto_clamped="#000000"
|
||||
handle_vertex="#000000"
|
||||
handle_vertex_select="#ffff00"
|
||||
handle_vertex_size="5">
|
||||
<space>
|
||||
<ThemeSpaceGeneric back="#1a1a1a"
|
||||
title="#ffffff"
|
||||
text="#8b8b8b"
|
||||
text_hi="#ffffff"
|
||||
header="#202020"
|
||||
header_text="#000000"
|
||||
header_text_hi="#b8b8b8"
|
||||
button="#262626f2"
|
||||
button_title="#c7c7c7"
|
||||
button_text="#b4b4b4"
|
||||
button_text_hi="#ffffff"
|
||||
tab_active="#262626"
|
||||
tab_inactive="#1a1a1a"
|
||||
tab_back="#1a1a1aff"
|
||||
tab_outline="#1a1a1a">
|
||||
<panelcolors>
|
||||
<ThemePanelColors header="#00000000"
|
||||
back="#202020ff"
|
||||
show_header="TRUE"
|
||||
show_back="FALSE">
|
||||
</ThemePanelColors>
|
||||
</panelcolors>
|
||||
</ThemeSpaceGeneric>
|
||||
</space>
|
||||
<space_list>
|
||||
<ThemeSpaceListGeneric list="#1a1a1a"
|
||||
list_title="#000000"
|
||||
list_text="#aaaaaa"
|
||||
list_text_hi="#ffffff">
|
||||
</ThemeSpaceListGeneric>
|
||||
</space_list>
|
||||
</ThemeClipEditor>
|
||||
</clip_editor>
|
||||
<bone_color_sets>
|
||||
<ThemeBoneColorSet normal="#9a0000"
|
||||
select="#bd1111"
|
||||
active="#f70a0a"
|
||||
show_colored_constraints="FALSE">
|
||||
</ThemeBoneColorSet>
|
||||
<ThemeBoneColorSet normal="#f74018"
|
||||
select="#f66913"
|
||||
active="#fa9900"
|
||||
show_colored_constraints="FALSE">
|
||||
</ThemeBoneColorSet>
|
||||
<ThemeBoneColorSet normal="#1e9109"
|
||||
select="#59b70b"
|
||||
active="#83ef1d"
|
||||
show_colored_constraints="FALSE">
|
||||
</ThemeBoneColorSet>
|
||||
<ThemeBoneColorSet normal="#0a3694"
|
||||
select="#3667df"
|
||||
active="#5ec1ef"
|
||||
show_colored_constraints="FALSE">
|
||||
</ThemeBoneColorSet>
|
||||
<ThemeBoneColorSet normal="#a9294e"
|
||||
select="#c1416a"
|
||||
active="#f05d91"
|
||||
show_colored_constraints="FALSE">
|
||||
</ThemeBoneColorSet>
|
||||
<ThemeBoneColorSet normal="#430c78"
|
||||
select="#543aa3"
|
||||
active="#8764d5"
|
||||
show_colored_constraints="FALSE">
|
||||
</ThemeBoneColorSet>
|
||||
<ThemeBoneColorSet normal="#24785a"
|
||||
select="#3c9579"
|
||||
active="#6fb6ab"
|
||||
show_colored_constraints="FALSE">
|
||||
</ThemeBoneColorSet>
|
||||
<ThemeBoneColorSet normal="#4b707c"
|
||||
select="#6a8691"
|
||||
active="#9bc2cd"
|
||||
show_colored_constraints="FALSE">
|
||||
</ThemeBoneColorSet>
|
||||
<ThemeBoneColorSet normal="#f4c90c"
|
||||
select="#eec236"
|
||||
active="#f3ff00"
|
||||
show_colored_constraints="FALSE">
|
||||
</ThemeBoneColorSet>
|
||||
<ThemeBoneColorSet normal="#1e2024"
|
||||
select="#484c56"
|
||||
active="#ffffff"
|
||||
show_colored_constraints="FALSE">
|
||||
</ThemeBoneColorSet>
|
||||
<ThemeBoneColorSet normal="#6f2f6a"
|
||||
select="#9845be"
|
||||
active="#d330d6"
|
||||
show_colored_constraints="FALSE">
|
||||
</ThemeBoneColorSet>
|
||||
<ThemeBoneColorSet normal="#6c8e22"
|
||||
select="#7fb022"
|
||||
active="#bbef5b"
|
||||
show_colored_constraints="FALSE">
|
||||
</ThemeBoneColorSet>
|
||||
<ThemeBoneColorSet normal="#8d8d8d"
|
||||
select="#b0b0b0"
|
||||
active="#dedede"
|
||||
show_colored_constraints="FALSE">
|
||||
</ThemeBoneColorSet>
|
||||
<ThemeBoneColorSet normal="#834326"
|
||||
select="#8b5811"
|
||||
active="#bd6a11"
|
||||
show_colored_constraints="FALSE">
|
||||
</ThemeBoneColorSet>
|
||||
<ThemeBoneColorSet normal="#08310e"
|
||||
select="#1c430b"
|
||||
active="#34622b"
|
||||
show_colored_constraints="FALSE">
|
||||
</ThemeBoneColorSet>
|
||||
<ThemeBoneColorSet normal="#000000"
|
||||
select="#000000"
|
||||
active="#000000"
|
||||
show_colored_constraints="FALSE">
|
||||
</ThemeBoneColorSet>
|
||||
<ThemeBoneColorSet normal="#000000"
|
||||
select="#000000"
|
||||
active="#000000"
|
||||
show_colored_constraints="FALSE">
|
||||
</ThemeBoneColorSet>
|
||||
<ThemeBoneColorSet normal="#000000"
|
||||
select="#000000"
|
||||
active="#000000"
|
||||
show_colored_constraints="FALSE">
|
||||
</ThemeBoneColorSet>
|
||||
<ThemeBoneColorSet normal="#000000"
|
||||
select="#000000"
|
||||
active="#000000"
|
||||
show_colored_constraints="FALSE">
|
||||
</ThemeBoneColorSet>
|
||||
<ThemeBoneColorSet normal="#000000"
|
||||
select="#000000"
|
||||
active="#000000"
|
||||
show_colored_constraints="FALSE">
|
||||
</ThemeBoneColorSet>
|
||||
</bone_color_sets>
|
||||
</Theme>
|
||||
<ThemeStyle>
|
||||
<panel_title>
|
||||
<ThemeFontStyle points="13"
|
||||
font_kerning_style="FITTED"
|
||||
shadow="1"
|
||||
shadow_offset_x="0"
|
||||
shadow_offset_y="-1"
|
||||
shadow_alpha="0.15"
|
||||
shadow_value="1">
|
||||
</ThemeFontStyle>
|
||||
</panel_title>
|
||||
<widget_label>
|
||||
<ThemeFontStyle points="13"
|
||||
font_kerning_style="FITTED"
|
||||
shadow="3"
|
||||
shadow_offset_x="0"
|
||||
shadow_offset_y="-1"
|
||||
shadow_alpha="0"
|
||||
shadow_value="0">
|
||||
</ThemeFontStyle>
|
||||
</widget_label>
|
||||
<widget>
|
||||
<ThemeFontStyle points="12"
|
||||
font_kerning_style="FITTED"
|
||||
shadow="0"
|
||||
shadow_offset_x="0"
|
||||
shadow_offset_y="0"
|
||||
shadow_alpha="0.25"
|
||||
shadow_value="0">
|
||||
</ThemeFontStyle>
|
||||
</widget>
|
||||
</ThemeStyle>
|
||||
</bpy>
|
||||
1177
release/scripts/presets/interface_theme/north.xml
Normal file
1177
release/scripts/presets/interface_theme/north.xml
Normal file
@@ -0,0 +1,1177 @@
|
||||
<bpy>
|
||||
<Theme>
|
||||
<user_interface>
|
||||
<ThemeUserInterface menu_shadow_fac="0.5"
|
||||
menu_shadow_width="12"
|
||||
icon_file=""
|
||||
icon_alpha="1"
|
||||
widget_emboss="#ffffff05"
|
||||
axis_x="#e64545"
|
||||
axis_y="#96d941"
|
||||
axis_z="#4c84d9">
|
||||
<wcol_regular>
|
||||
<ThemeWidgetColors outline="#000000"
|
||||
inner="#474a4fff"
|
||||
inner_sel="#617da8ff"
|
||||
item="#292b2eff"
|
||||
text="#cfd8e6"
|
||||
text_sel="#e3e9f2"
|
||||
show_shaded="FALSE"
|
||||
shadetop="0"
|
||||
shadedown="0">
|
||||
</ThemeWidgetColors>
|
||||
</wcol_regular>
|
||||
<wcol_tool>
|
||||
<ThemeWidgetColors outline="#000000"
|
||||
inner="#292b2eff"
|
||||
inner_sel="#617da8ff"
|
||||
item="#acb4bfff"
|
||||
text="#cfd8e6"
|
||||
text_sel="#000000"
|
||||
show_shaded="FALSE"
|
||||
shadetop="15"
|
||||
shadedown="-15">
|
||||
</ThemeWidgetColors>
|
||||
</wcol_tool>
|
||||
<wcol_radio>
|
||||
<ThemeWidgetColors outline="#000000"
|
||||
inner="#292b2eff"
|
||||
inner_sel="#617da8ff"
|
||||
item="#acb4bfff"
|
||||
text="#cfd8e6"
|
||||
text_sel="#000000"
|
||||
show_shaded="FALSE"
|
||||
shadetop="15"
|
||||
shadedown="-15">
|
||||
</ThemeWidgetColors>
|
||||
</wcol_radio>
|
||||
<wcol_text>
|
||||
<ThemeWidgetColors outline="#000000"
|
||||
inner="#7e848cff"
|
||||
inner_sel="#959ca6ff"
|
||||
item="#617da8ff"
|
||||
text="#000000"
|
||||
text_sel="#000000"
|
||||
show_shaded="FALSE"
|
||||
shadetop="0"
|
||||
shadedown="25">
|
||||
</ThemeWidgetColors>
|
||||
</wcol_text>
|
||||
<wcol_option>
|
||||
<ThemeWidgetColors outline="#000000"
|
||||
inner="#393c40bf"
|
||||
inner_sel="#617da8ff"
|
||||
item="#000000ff"
|
||||
text="#b8c0cc"
|
||||
text_sel="#cfd8e6"
|
||||
show_shaded="FALSE"
|
||||
shadetop="15"
|
||||
shadedown="-15">
|
||||
</ThemeWidgetColors>
|
||||
</wcol_option>
|
||||
<wcol_toggle>
|
||||
<ThemeWidgetColors outline="#000000"
|
||||
inner="#474a4fff"
|
||||
inner_sel="#617da8ff"
|
||||
item="#292b2eff"
|
||||
text="#cfd8e6"
|
||||
text_sel="#000000"
|
||||
show_shaded="FALSE"
|
||||
shadetop="0"
|
||||
shadedown="0">
|
||||
</ThemeWidgetColors>
|
||||
</wcol_toggle>
|
||||
<wcol_num>
|
||||
<ThemeWidgetColors outline="#000000"
|
||||
inner="#7e848cff"
|
||||
inner_sel="#959ca6ff"
|
||||
item="#525a66ff"
|
||||
text="#000000"
|
||||
text_sel="#000000"
|
||||
show_shaded="FALSE"
|
||||
shadetop="-20"
|
||||
shadedown="0">
|
||||
</ThemeWidgetColors>
|
||||
</wcol_num>
|
||||
<wcol_numslider>
|
||||
<ThemeWidgetColors outline="#000000"
|
||||
inner="#7e848cff"
|
||||
inner_sel="#959ca6ff"
|
||||
item="#525a66ff"
|
||||
text="#000000"
|
||||
text_sel="#000000"
|
||||
show_shaded="FALSE"
|
||||
shadetop="-20"
|
||||
shadedown="0">
|
||||
</ThemeWidgetColors>
|
||||
</wcol_numslider>
|
||||
<wcol_box>
|
||||
<ThemeWidgetColors outline="#000000"
|
||||
inner="#474a4fff"
|
||||
inner_sel="#617da8ff"
|
||||
item="#acb4bfff"
|
||||
text="#000000"
|
||||
text_sel="#000000"
|
||||
show_shaded="FALSE"
|
||||
shadetop="0"
|
||||
shadedown="0">
|
||||
</ThemeWidgetColors>
|
||||
</wcol_box>
|
||||
<wcol_menu>
|
||||
<ThemeWidgetColors outline="#000000"
|
||||
inner="#292b2eff"
|
||||
inner_sel="#17181aff"
|
||||
item="#acb4bfff"
|
||||
text="#cfd8e6"
|
||||
text_sel="#737880"
|
||||
show_shaded="FALSE"
|
||||
shadetop="15"
|
||||
shadedown="-15">
|
||||
</ThemeWidgetColors>
|
||||
</wcol_menu>
|
||||
<wcol_pulldown>
|
||||
<ThemeWidgetColors outline="#000000"
|
||||
inner="#292b2eff"
|
||||
inner_sel="#222326ff"
|
||||
item="#acb4bfff"
|
||||
text="#cfd8e6"
|
||||
text_sel="#b8c0cc"
|
||||
show_shaded="FALSE"
|
||||
shadetop="25"
|
||||
shadedown="-20">
|
||||
</ThemeWidgetColors>
|
||||
</wcol_pulldown>
|
||||
<wcol_menu_back>
|
||||
<ThemeWidgetColors outline="#000000"
|
||||
inner="#323438f7"
|
||||
inner_sel="#212326f7"
|
||||
item="#617da8ff"
|
||||
text="#cfd8e6"
|
||||
text_sel="#e6efff"
|
||||
show_shaded="FALSE"
|
||||
shadetop="25"
|
||||
shadedown="-20">
|
||||
</ThemeWidgetColors>
|
||||
</wcol_menu_back>
|
||||
<wcol_pie_menu>
|
||||
<ThemeWidgetColors outline="#000000"
|
||||
inner="#292b2eff"
|
||||
inner_sel="#617da8ff"
|
||||
item="#617da8ff"
|
||||
text="#b8c0cc"
|
||||
text_sel="#cfd8e6"
|
||||
show_shaded="FALSE"
|
||||
shadetop="10"
|
||||
shadedown="-10">
|
||||
</ThemeWidgetColors>
|
||||
</wcol_pie_menu>
|
||||
<wcol_tooltip>
|
||||
<ThemeWidgetColors outline="#000000"
|
||||
inner="#17181af2"
|
||||
inner_sel="#17181af2"
|
||||
item="#acb4bfff"
|
||||
text="#cfd8e6"
|
||||
text_sel="#e6f0ff"
|
||||
show_shaded="FALSE"
|
||||
shadetop="25"
|
||||
shadedown="-20">
|
||||
</ThemeWidgetColors>
|
||||
</wcol_tooltip>
|
||||
<wcol_menu_item>
|
||||
<ThemeWidgetColors outline="#000000"
|
||||
inner="#00000000"
|
||||
inner_sel="#617da8ff"
|
||||
item="#9ca3ad80"
|
||||
text="#cfd8e6"
|
||||
text_sel="#000000"
|
||||
show_shaded="FALSE"
|
||||
shadetop="38"
|
||||
shadedown="0">
|
||||
</ThemeWidgetColors>
|
||||
</wcol_menu_item>
|
||||
<wcol_scroll>
|
||||
<ThemeWidgetColors outline="#000000"
|
||||
inner="#393c40bf"
|
||||
inner_sel="#505459bf"
|
||||
item="#676c73ff"
|
||||
text="#000000"
|
||||
text_sel="#000000"
|
||||
show_shaded="FALSE"
|
||||
shadetop="5"
|
||||
shadedown="-5">
|
||||
</ThemeWidgetColors>
|
||||
</wcol_scroll>
|
||||
<wcol_progress>
|
||||
<ThemeWidgetColors outline="#000000"
|
||||
inner="#8a9099ff"
|
||||
inner_sel="#7e848cff"
|
||||
item="#617da8ff"
|
||||
text="#cfd8e6"
|
||||
text_sel="#0c0c0c"
|
||||
show_shaded="FALSE"
|
||||
shadetop="0"
|
||||
shadedown="0">
|
||||
</ThemeWidgetColors>
|
||||
</wcol_progress>
|
||||
<wcol_list_item>
|
||||
<ThemeWidgetColors outline="#000000"
|
||||
inner="#00000000"
|
||||
inner_sel="#393c40ff"
|
||||
item="#000000ff"
|
||||
text="#c3ccd9"
|
||||
text_sel="#dae4f2"
|
||||
show_shaded="FALSE"
|
||||
shadetop="0"
|
||||
shadedown="0">
|
||||
</ThemeWidgetColors>
|
||||
</wcol_list_item>
|
||||
<wcol_state>
|
||||
<ThemeWidgetStateColors inner_anim="#81b359"
|
||||
inner_anim_sel="#72cc5c"
|
||||
inner_key="#e6c573"
|
||||
inner_key_sel="#f2ab61"
|
||||
inner_driven="#836cd9"
|
||||
inner_driven_sel="#9e73e6"
|
||||
blend="1">
|
||||
</ThemeWidgetStateColors>
|
||||
</wcol_state>
|
||||
</ThemeUserInterface>
|
||||
</user_interface>
|
||||
<view_3d>
|
||||
<ThemeView3D grid="#55595e"
|
||||
clipping_border_3d="#313131ff"
|
||||
wire="#000000"
|
||||
wire_edit="#000000"
|
||||
gp_vertex="#000000"
|
||||
gp_vertex_select="#f2aa3d"
|
||||
gp_vertex_size="3"
|
||||
text_grease_pencil="#b5e61d"
|
||||
object_selected="#617da8"
|
||||
object_active="#f2af61"
|
||||
object_grouped="#172621"
|
||||
object_grouped_active="#9ebf7c"
|
||||
text_keyframe="#ddd700"
|
||||
camera="#000000"
|
||||
empty="#000000"
|
||||
lamp="#00000028"
|
||||
speaker="#000000"
|
||||
vertex="#000000"
|
||||
vertex_select="#f2b252"
|
||||
vertex_size="3"
|
||||
vertex_bevel="#00a5ff"
|
||||
vertex_unreferenced="#000000"
|
||||
edge_select="#d29247"
|
||||
edge_seam="#e63f2e"
|
||||
edge_sharp="#49f2f2"
|
||||
edge_crease="#d962a9"
|
||||
edge_bevel="#00a5ff"
|
||||
edge_facesel="#4b4b4b"
|
||||
freestyle_edge_mark="#7fff7f"
|
||||
face="#00000011"
|
||||
face_select="#80512b40"
|
||||
face_dot="#f2b252"
|
||||
facedot_size="2"
|
||||
freestyle_face_mark="#7fff7f33"
|
||||
nurb_uline="#909000"
|
||||
nurb_vline="#803060"
|
||||
nurb_sel_uline="#ebff00"
|
||||
nurb_sel_vline="#f090a0"
|
||||
act_spline="#d94536"
|
||||
handle_free="#000000"
|
||||
handle_auto="#909000"
|
||||
handle_vect="#409030"
|
||||
handle_sel_vect="#40c030"
|
||||
handle_align="#803060"
|
||||
handle_sel_free="#000000"
|
||||
handle_sel_auto="#f0ff40"
|
||||
handle_sel_align="#f090a0"
|
||||
lastsel_point="#ffffff"
|
||||
extra_edge_len="#200000"
|
||||
extra_edge_angle="#202000"
|
||||
extra_face_angle="#23238c"
|
||||
extra_face_area="#082008"
|
||||
editmesh_active="#ffffff80"
|
||||
normal="#4ddddd"
|
||||
vertex_normal="#2361dd"
|
||||
split_normal="#dd63dd"
|
||||
bone_pose="#5cace6"
|
||||
bone_pose_active="#61f2e1"
|
||||
bone_solid="#adbfcc"
|
||||
bundle_solid="#c8c8c8"
|
||||
camera_path="#000000"
|
||||
skin_root="#b44d4d"
|
||||
view_overlay="#000000"
|
||||
transform="#adbacc"
|
||||
frame_current="#6282b3"
|
||||
paint_curve_handle="#7fff7f7f"
|
||||
paint_curve_pivot="#ff7f7f7f"
|
||||
outline_width="1">
|
||||
<space>
|
||||
<ThemeSpaceGradient title="#000000"
|
||||
text="#000000"
|
||||
text_hi="#cfd8e6"
|
||||
header="#393c40"
|
||||
header_text="#cfd8e6"
|
||||
header_text_hi="#cfd8e6"
|
||||
button="#393c40d9"
|
||||
button_title="#cfd8e6"
|
||||
button_text="#cfd8e6"
|
||||
button_text_hi="#cfd8e6"
|
||||
tab_active="#393c40"
|
||||
tab_inactive="#222426"
|
||||
tab_back="#2e3033d9"
|
||||
tab_outline="#2e3033">
|
||||
<gradients>
|
||||
<ThemeGradientColors show_grad="FALSE"
|
||||
gradient="#313338"
|
||||
high_gradient="#474b52">
|
||||
</ThemeGradientColors>
|
||||
</gradients>
|
||||
<panelcolors>
|
||||
<ThemePanelColors header="#222426ff"
|
||||
back="#393c40ff"
|
||||
show_header="FALSE"
|
||||
show_back="FALSE">
|
||||
</ThemePanelColors>
|
||||
</panelcolors>
|
||||
</ThemeSpaceGradient>
|
||||
</space>
|
||||
</ThemeView3D>
|
||||
</view_3d>
|
||||
<graph_editor>
|
||||
<ThemeGraphEditor grid="#323538"
|
||||
frame_current="#6282b3"
|
||||
window_sliders="#8f9296"
|
||||
channels_region="#707070"
|
||||
dopesheet_channel="#52616e"
|
||||
dopesheet_subchannel="#606975"
|
||||
channel_group="#364d46"
|
||||
active_channels_group="#364d38"
|
||||
vertex="#000000"
|
||||
vertex_select="#f2b76d"
|
||||
vertex_size="4"
|
||||
vertex_bevel="#000000"
|
||||
vertex_unreferenced="#000000"
|
||||
handle_free="#000000"
|
||||
handle_auto="#909000"
|
||||
handle_vect="#409030"
|
||||
handle_sel_vect="#40c030"
|
||||
handle_align="#bf3962"
|
||||
handle_sel_free="#000000"
|
||||
handle_sel_auto="#f0ff40"
|
||||
handle_sel_align="#f05454"
|
||||
handle_auto_clamped="#994030"
|
||||
handle_sel_auto_clamped="#f0af90"
|
||||
lastsel_point="#ffffff"
|
||||
handle_vertex="#000000"
|
||||
handle_vertex_select="#f2af61"
|
||||
handle_vertex_size="4">
|
||||
<space>
|
||||
<ThemeSpaceGeneric back="#505459"
|
||||
title="#000000"
|
||||
text="#000000"
|
||||
text_hi="#e6f0ff"
|
||||
header="#393c40"
|
||||
header_text="#cfd8e6"
|
||||
header_text_hi="#e6f0ff"
|
||||
button="#393c40d9"
|
||||
button_title="#cfd8e6"
|
||||
button_text="#cfd8e6"
|
||||
button_text_hi="#e6f0ff"
|
||||
tab_active="#393c40"
|
||||
tab_inactive="#222426"
|
||||
tab_back="#2e3033d9"
|
||||
tab_outline="#2e3033">
|
||||
<panelcolors>
|
||||
<ThemePanelColors header="#222426ff"
|
||||
back="#393c40ff"
|
||||
show_header="FALSE"
|
||||
show_back="FALSE">
|
||||
</ThemePanelColors>
|
||||
</panelcolors>
|
||||
</ThemeSpaceGeneric>
|
||||
</space>
|
||||
<space_list>
|
||||
<ThemeSpaceListGeneric list="#393c40"
|
||||
list_title="#cfd8e6"
|
||||
list_text="#cfd8e6"
|
||||
list_text_hi="#e6a75c">
|
||||
</ThemeSpaceListGeneric>
|
||||
</space_list>
|
||||
</ThemeGraphEditor>
|
||||
</graph_editor>
|
||||
<file_browser>
|
||||
<ThemeFileBrowser selected_file="#617da8">
|
||||
<space>
|
||||
<ThemeSpaceGeneric back="#3e4145"
|
||||
title="#dbe4f2"
|
||||
text="#dbe4f2"
|
||||
text_hi="#e6f0ff"
|
||||
header="#393c40"
|
||||
header_text="#dbe4f2"
|
||||
header_text_hi="#e6f0ff"
|
||||
button="#393c40d9"
|
||||
button_title="#dbe4f2"
|
||||
button_text="#dbe4f2"
|
||||
button_text_hi="#e6f0ff"
|
||||
tab_active="#393c40"
|
||||
tab_inactive="#222426"
|
||||
tab_back="#2e3033d9"
|
||||
tab_outline="#2e3033">
|
||||
<panelcolors>
|
||||
<ThemePanelColors header="#222426ff"
|
||||
back="#393c40ff"
|
||||
show_header="FALSE"
|
||||
show_back="FALSE">
|
||||
</ThemePanelColors>
|
||||
</panelcolors>
|
||||
</ThemeSpaceGeneric>
|
||||
</space>
|
||||
</ThemeFileBrowser>
|
||||
</file_browser>
|
||||
<nla_editor>
|
||||
<ThemeNLAEditor grid="#323538"
|
||||
view_sliders="#8f9296"
|
||||
active_action="#617da866"
|
||||
active_action_unset="#5673734d"
|
||||
strips="#0c0a0a"
|
||||
strips_selected="#617da8"
|
||||
transition_strips="#1c2630"
|
||||
transition_strips_selected="#2e75db"
|
||||
meta_strips="#332642"
|
||||
meta_strips_selected="#692196"
|
||||
sound_strips="#2b3d3d"
|
||||
sound_strips_selected="#1f7a7a"
|
||||
tweak="#59e62e"
|
||||
tweak_duplicate="#d92b2b"
|
||||
keyframe_border="#000000ff"
|
||||
keyframe_border_selected="#000000ff"
|
||||
frame_current="#6282b3">
|
||||
<space>
|
||||
<ThemeSpaceGeneric back="#505459"
|
||||
title="#000000"
|
||||
text="#000000"
|
||||
text_hi="#e6f0ff"
|
||||
header="#393c40"
|
||||
header_text="#cfd8e6"
|
||||
header_text_hi="#e6f0ff"
|
||||
button="#393c40d9"
|
||||
button_title="#cfd8e6"
|
||||
button_text="#cfd8e6"
|
||||
button_text_hi="#e6f0ff"
|
||||
tab_active="#393c40"
|
||||
tab_inactive="#222426"
|
||||
tab_back="#2e3033d9"
|
||||
tab_outline="#2e3033">
|
||||
<panelcolors>
|
||||
<ThemePanelColors header="#222426ff"
|
||||
back="#393c40ff"
|
||||
show_header="FALSE"
|
||||
show_back="FALSE">
|
||||
</ThemePanelColors>
|
||||
</panelcolors>
|
||||
</ThemeSpaceGeneric>
|
||||
</space>
|
||||
<space_list>
|
||||
<ThemeSpaceListGeneric list="#393c40"
|
||||
list_title="#000000"
|
||||
list_text="#cfd8e6"
|
||||
list_text_hi="#e6a75c">
|
||||
</ThemeSpaceListGeneric>
|
||||
</space_list>
|
||||
</ThemeNLAEditor>
|
||||
</nla_editor>
|
||||
<dopesheet_editor>
|
||||
<ThemeDopeSheet grid="#2e3033"
|
||||
frame_current="#6282b3"
|
||||
value_sliders="#000000"
|
||||
view_sliders="#969696"
|
||||
dopesheet_channel="#52616e"
|
||||
dopesheet_subchannel="#606975"
|
||||
channels="#707070"
|
||||
channels_selected="#60c040"
|
||||
channel_group="#364d46"
|
||||
active_channels_group="#364d38"
|
||||
long_key="#0c0a0a"
|
||||
long_key_selected="#f29f3d"
|
||||
keyframe="#e8e8e8"
|
||||
keyframe_selected="#f2b76d"
|
||||
keyframe_extreme="#e8b3cc"
|
||||
keyframe_extreme_selected="#f28080"
|
||||
keyframe_breakdown="#b3dbe8"
|
||||
keyframe_breakdown_selected="#54bfed"
|
||||
keyframe_jitter="#94e575"
|
||||
keyframe_jitter_selected="#61c042"
|
||||
keyframe_border="#000000ff"
|
||||
keyframe_border_selected="#000000ff"
|
||||
keyframe_scale_factor="1"
|
||||
summary="#5379a680">
|
||||
<space>
|
||||
<ThemeSpaceGeneric back="#505459"
|
||||
title="#000000"
|
||||
text="#000000"
|
||||
text_hi="#e6f0ff"
|
||||
header="#393c40"
|
||||
header_text="#cfd8e6"
|
||||
header_text_hi="#e6f0ff"
|
||||
button="#393c40d9"
|
||||
button_title="#cfd8e6"
|
||||
button_text="#cfd8e6"
|
||||
button_text_hi="#e6f0ff"
|
||||
tab_active="#393c40"
|
||||
tab_inactive="#222426"
|
||||
tab_back="#2e3033d9"
|
||||
tab_outline="#2e3033">
|
||||
<panelcolors>
|
||||
<ThemePanelColors header="#222426ff"
|
||||
back="#393c40ff"
|
||||
show_header="FALSE"
|
||||
show_back="FALSE">
|
||||
</ThemePanelColors>
|
||||
</panelcolors>
|
||||
</ThemeSpaceGeneric>
|
||||
</space>
|
||||
<space_list>
|
||||
<ThemeSpaceListGeneric list="#393c40"
|
||||
list_title="#cfd8e6"
|
||||
list_text="#cfd8e6"
|
||||
list_text_hi="#e6a75c">
|
||||
</ThemeSpaceListGeneric>
|
||||
</space_list>
|
||||
</ThemeDopeSheet>
|
||||
</dopesheet_editor>
|
||||
<image_editor>
|
||||
<ThemeImageEditor gp_vertex="#000000"
|
||||
gp_vertex_select="#f2aa3d"
|
||||
gp_vertex_size="3"
|
||||
vertex="#000000"
|
||||
vertex_select="#f2b252"
|
||||
vertex_size="3"
|
||||
vertex_bevel="#000000"
|
||||
vertex_unreferenced="#000000"
|
||||
face="#e6f0ff0d"
|
||||
face_select="#80512b40"
|
||||
face_dot="#f2b252"
|
||||
facedot_size="2"
|
||||
freestyle_face_mark="#7fff7f33"
|
||||
editmesh_active="#e6f0ff80"
|
||||
wire_edit="#acb4bf"
|
||||
edge_select="#d29247"
|
||||
scope_back="#727272ff"
|
||||
preview_stitch_face="#7f7f0033"
|
||||
preview_stitch_edge="#ff26ff33"
|
||||
preview_stitch_vert="#2626ff33"
|
||||
preview_stitch_stitchable="#26ff26ff"
|
||||
preview_stitch_unstitchable="#ff2626ff"
|
||||
preview_stitch_active="#e1d2c323"
|
||||
uv_shadow="#707070ff"
|
||||
uv_others="#606060ff"
|
||||
frame_current="#6282b3"
|
||||
metadatabg="#000000"
|
||||
metadatatext="#ffffff"
|
||||
handle_free="#000000"
|
||||
handle_auto="#909000"
|
||||
handle_align="#803060"
|
||||
handle_sel_free="#000000"
|
||||
handle_sel_auto="#f0ff40"
|
||||
handle_sel_align="#f090a0"
|
||||
handle_auto_clamped="#000000"
|
||||
handle_sel_auto_clamped="#000000"
|
||||
handle_vertex="#000000"
|
||||
handle_vertex_select="#ffff00"
|
||||
handle_vertex_size="5"
|
||||
paint_curve_handle="#7fff7f7f"
|
||||
paint_curve_pivot="#ff7f7f7f">
|
||||
<space>
|
||||
<ThemeSpaceGeneric back="#3e4147"
|
||||
title="#cfd8e6"
|
||||
text="#cfd8e6"
|
||||
text_hi="#e6f0ff"
|
||||
header="#393c40"
|
||||
header_text="#cfd8e6"
|
||||
header_text_hi="#e6f0ff"
|
||||
button="#393c40d9"
|
||||
button_title="#cfd8e6"
|
||||
button_text="#cfd8e6"
|
||||
button_text_hi="#e6f0ff"
|
||||
tab_active="#393c40"
|
||||
tab_inactive="#222426"
|
||||
tab_back="#2e3033d9"
|
||||
tab_outline="#2e3033">
|
||||
<panelcolors>
|
||||
<ThemePanelColors header="#222426ff"
|
||||
back="#393c40ff"
|
||||
show_header="FALSE"
|
||||
show_back="FALSE">
|
||||
</ThemePanelColors>
|
||||
</panelcolors>
|
||||
</ThemeSpaceGeneric>
|
||||
</space>
|
||||
</ThemeImageEditor>
|
||||
</image_editor>
|
||||
<sequence_editor>
|
||||
<ThemeSequenceEditor gp_vertex="#000000"
|
||||
gp_vertex_select="#f2aa3d"
|
||||
gp_vertex_size="3"
|
||||
grid="#222426"
|
||||
window_sliders="#a0a0a0"
|
||||
movie_strip="#516987"
|
||||
movieclip_strip="#20208f"
|
||||
image_strip="#6d5881"
|
||||
scene_strip="#4e983e"
|
||||
audio_strip="#2e8f8f"
|
||||
effect_strip="#a9547c"
|
||||
transition_strip="#a25f6f"
|
||||
meta_strip="#6d9183"
|
||||
text_strip="#a29700"
|
||||
frame_current="#6282b3"
|
||||
keyframe="#f2b76d"
|
||||
draw_action="#4cd9f2"
|
||||
preview_back="#000000"
|
||||
metadatabg="#000000"
|
||||
metadatatext="#ffffff">
|
||||
<space>
|
||||
<ThemeSpaceGeneric back="#5c6066"
|
||||
title="#000000"
|
||||
text="#000000"
|
||||
text_hi="#e6f0ff"
|
||||
header="#393c40"
|
||||
header_text="#cfd8e6"
|
||||
header_text_hi="#e6f0ff"
|
||||
button="#393c40d9"
|
||||
button_title="#cfd8e6"
|
||||
button_text="#cfd8e6"
|
||||
button_text_hi="#e6f0ff"
|
||||
tab_active="#393c40"
|
||||
tab_inactive="#222426"
|
||||
tab_back="#2e3033d9"
|
||||
tab_outline="#2e3033">
|
||||
<panelcolors>
|
||||
<ThemePanelColors header="#222426ff"
|
||||
back="#393c40ff"
|
||||
show_header="FALSE"
|
||||
show_back="FALSE">
|
||||
</ThemePanelColors>
|
||||
</panelcolors>
|
||||
</ThemeSpaceGeneric>
|
||||
</space>
|
||||
</ThemeSequenceEditor>
|
||||
</sequence_editor>
|
||||
<properties>
|
||||
<ThemeProperties>
|
||||
<space>
|
||||
<ThemeSpaceGeneric back="#393c40"
|
||||
title="#cfd8e6"
|
||||
text="#cfd8e6"
|
||||
text_hi="#e6f0ff"
|
||||
header="#393c40"
|
||||
header_text="#cfd8e6"
|
||||
header_text_hi="#e6f0ff"
|
||||
button="#393c40cc"
|
||||
button_title="#000000"
|
||||
button_text="#000000"
|
||||
button_text_hi="#e6f0ff"
|
||||
tab_active="#393c40"
|
||||
tab_inactive="#242526"
|
||||
tab_back="#2e3033d9"
|
||||
tab_outline="#2e3033">
|
||||
<panelcolors>
|
||||
<ThemePanelColors header="#222426ff"
|
||||
back="#393c40ff"
|
||||
show_header="FALSE"
|
||||
show_back="FALSE">
|
||||
</ThemePanelColors>
|
||||
</panelcolors>
|
||||
</ThemeSpaceGeneric>
|
||||
</space>
|
||||
</ThemeProperties>
|
||||
</properties>
|
||||
<text_editor>
|
||||
<ThemeTextEditor line_numbers_background="#1b1c1f"
|
||||
selected_text="#3f444d"
|
||||
cursor="#f2b76d"
|
||||
syntax_builtin="#8abeb7"
|
||||
syntax_symbols="#d0d0d0"
|
||||
syntax_special="#8db6d9"
|
||||
syntax_preprocessor="#e6945c"
|
||||
syntax_reserved="#b294bb"
|
||||
syntax_comment="#707880"
|
||||
syntax_string="#b5bd68"
|
||||
syntax_numbers="#d95757">
|
||||
<space>
|
||||
<ThemeSpaceGeneric back="#282a2e"
|
||||
title="#cfd8e6"
|
||||
text="#cfd8e6"
|
||||
text_hi="#e6f0ff"
|
||||
header="#393c40"
|
||||
header_text="#cfd8e6"
|
||||
header_text_hi="#e6f0ff"
|
||||
button="#393c40d9"
|
||||
button_title="#cfd8e6"
|
||||
button_text="#cfd8e6"
|
||||
button_text_hi="#e6f0ff"
|
||||
tab_active="#393c40"
|
||||
tab_inactive="#222426"
|
||||
tab_back="#2e3033d9"
|
||||
tab_outline="#2e3033">
|
||||
<panelcolors>
|
||||
<ThemePanelColors header="#222426ff"
|
||||
back="#393c40ff"
|
||||
show_header="FALSE"
|
||||
show_back="FALSE">
|
||||
</ThemePanelColors>
|
||||
</panelcolors>
|
||||
</ThemeSpaceGeneric>
|
||||
</space>
|
||||
</ThemeTextEditor>
|
||||
</text_editor>
|
||||
<timeline>
|
||||
<ThemeTimeline grid="#222426"
|
||||
frame_current="#6282b3"
|
||||
time_keyframe="#f2b76d"
|
||||
time_grease_pencil="#acd94c">
|
||||
<space>
|
||||
<ThemeSpaceGeneric back="#505459"
|
||||
title="#000000"
|
||||
text="#000000"
|
||||
text_hi="#e6f0ff"
|
||||
header="#393c40"
|
||||
header_text="#cfd8e6"
|
||||
header_text_hi="#e6f0ff"
|
||||
button="#393c40d9"
|
||||
button_title="#cfd8e6"
|
||||
button_text="#cfd8e6"
|
||||
button_text_hi="#e6f0ff"
|
||||
tab_active="#393c40"
|
||||
tab_inactive="#222426"
|
||||
tab_back="#2e3033d9"
|
||||
tab_outline="#2e3033">
|
||||
<panelcolors>
|
||||
<ThemePanelColors header="#222426ff"
|
||||
back="#393c40ff"
|
||||
show_header="FALSE"
|
||||
show_back="FALSE">
|
||||
</ThemePanelColors>
|
||||
</panelcolors>
|
||||
</ThemeSpaceGeneric>
|
||||
</space>
|
||||
</ThemeTimeline>
|
||||
</timeline>
|
||||
<node_editor>
|
||||
<ThemeNodeEditor gp_vertex="#000000"
|
||||
gp_vertex_select="#f2aa3d"
|
||||
gp_vertex_size="3"
|
||||
node_selected="#617da8"
|
||||
node_active="#f2b76d"
|
||||
wire="#000000"
|
||||
wire_inner="#737373"
|
||||
wire_select="#617da8"
|
||||
selected_text="#7f7070"
|
||||
node_backdrop="#8f969fbf"
|
||||
converter_node="#74afb3"
|
||||
color_node="#e6c573"
|
||||
group_node="#5c686c"
|
||||
group_socket_node="#d9ca41"
|
||||
frame_node="#797c8073"
|
||||
matte_node="#bb7070"
|
||||
distor_node="#86bf9d"
|
||||
noodle_curving="5"
|
||||
input_node="#8d97a6"
|
||||
output_node="#8592a6"
|
||||
filter_node="#cc9f70"
|
||||
vector_node="#898bcc"
|
||||
texture_node="#82a5d9"
|
||||
shader_node="#94bf69"
|
||||
script_node="#686a75"
|
||||
pattern_node="#686a75"
|
||||
layout_node="#575b61">
|
||||
<space>
|
||||
<ThemeSpaceGeneric back="#393c40"
|
||||
title="#cfd8e6"
|
||||
text="#000000"
|
||||
text_hi="#e6f0ff"
|
||||
header="#393c40"
|
||||
header_text="#cfd8e6"
|
||||
header_text_hi="#e6f0ff"
|
||||
button="#393c40d9"
|
||||
button_title="#cfd8e6"
|
||||
button_text="#cfd8e6"
|
||||
button_text_hi="#e6f0ff"
|
||||
tab_active="#393c40"
|
||||
tab_inactive="#222426"
|
||||
tab_back="#2e3033d9"
|
||||
tab_outline="#2e3033">
|
||||
<panelcolors>
|
||||
<ThemePanelColors header="#222426ff"
|
||||
back="#393c40ff"
|
||||
show_header="FALSE"
|
||||
show_back="FALSE">
|
||||
</ThemePanelColors>
|
||||
</panelcolors>
|
||||
</ThemeSpaceGeneric>
|
||||
</space>
|
||||
<space_list>
|
||||
<ThemeSpaceListGeneric list="#959ca6"
|
||||
list_title="#000000"
|
||||
list_text="#000000"
|
||||
list_text_hi="#e6f0ff">
|
||||
</ThemeSpaceListGeneric>
|
||||
</space_list>
|
||||
</ThemeNodeEditor>
|
||||
</node_editor>
|
||||
<logic_editor>
|
||||
<ThemeLogicEditor>
|
||||
<space>
|
||||
<ThemeSpaceGeneric back="#3e4145"
|
||||
title="#cfd8e6"
|
||||
text="#cfd8e6"
|
||||
text_hi="#e6f0ff"
|
||||
header="#393c40"
|
||||
header_text="#cfd8e6"
|
||||
header_text_hi="#e6f0ff"
|
||||
button="#393c40d9"
|
||||
button_title="#cfd8e6"
|
||||
button_text="#cfd8e6"
|
||||
button_text_hi="#e6f0ff"
|
||||
tab_active="#393c40"
|
||||
tab_inactive="#222426"
|
||||
tab_back="#2e3033d9"
|
||||
tab_outline="#2d3033">
|
||||
<panelcolors>
|
||||
<ThemePanelColors header="#222426ff"
|
||||
back="#393c40ff"
|
||||
show_header="FALSE"
|
||||
show_back="FALSE">
|
||||
</ThemePanelColors>
|
||||
</panelcolors>
|
||||
</ThemeSpaceGeneric>
|
||||
</space>
|
||||
</ThemeLogicEditor>
|
||||
</logic_editor>
|
||||
<outliner>
|
||||
<ThemeOutliner match="#62738c"
|
||||
selected_highlight="#3e4145">
|
||||
<space>
|
||||
<ThemeSpaceGeneric back="#3e4145"
|
||||
title="#cfd8e6"
|
||||
text="#cfd8e6"
|
||||
text_hi="#e6a75c"
|
||||
header="#393c40"
|
||||
header_text="#cfd8e6"
|
||||
header_text_hi="#e6f0ff"
|
||||
button="#393c40d9"
|
||||
button_title="#e6f0ff"
|
||||
button_text="#cfd8e6"
|
||||
button_text_hi="#e6f0ff"
|
||||
tab_active="#393c40"
|
||||
tab_inactive="#222426"
|
||||
tab_back="#2e3033d9"
|
||||
tab_outline="#2e3033">
|
||||
<panelcolors>
|
||||
<ThemePanelColors header="#222426ff"
|
||||
back="#393c40ff"
|
||||
show_header="FALSE"
|
||||
show_back="FALSE">
|
||||
</ThemePanelColors>
|
||||
</panelcolors>
|
||||
</ThemeSpaceGeneric>
|
||||
</space>
|
||||
</ThemeOutliner>
|
||||
</outliner>
|
||||
<info>
|
||||
<ThemeInfo info_selected="#282a2e"
|
||||
info_selected_text="#8aaee6"
|
||||
info_error="#282a2e"
|
||||
info_error_text="#d95757"
|
||||
info_warning="#282a2e"
|
||||
info_warning_text="#de935f"
|
||||
info_info="#282a2e"
|
||||
info_info_text="#acbf60"
|
||||
info_debug="#282a2e"
|
||||
info_debug_text="#b294bb">
|
||||
<space>
|
||||
<ThemeSpaceGeneric back="#282a2e"
|
||||
title="#cfd8e6"
|
||||
text="#cfd8e6"
|
||||
text_hi="#e6f0ff"
|
||||
header="#393c40"
|
||||
header_text="#cfd8e6"
|
||||
header_text_hi="#e6f0ff"
|
||||
button="#393c40d9"
|
||||
button_title="#000000"
|
||||
button_text="#8aaee6"
|
||||
button_text_hi="#e6f0ff"
|
||||
tab_active="#393c40"
|
||||
tab_inactive="#222426"
|
||||
tab_back="#2e3033d9"
|
||||
tab_outline="#2e3033">
|
||||
<panelcolors>
|
||||
<ThemePanelColors header="#222426ff"
|
||||
back="#393c40ff"
|
||||
show_header="FALSE"
|
||||
show_back="FALSE">
|
||||
</ThemePanelColors>
|
||||
</panelcolors>
|
||||
</ThemeSpaceGeneric>
|
||||
</space>
|
||||
</ThemeInfo>
|
||||
</info>
|
||||
<user_preferences>
|
||||
<ThemeUserPreferences>
|
||||
<space>
|
||||
<ThemeSpaceGeneric back="#45484d"
|
||||
title="#cfd8e6"
|
||||
text="#cfd8e6"
|
||||
text_hi="#e6f0ff"
|
||||
header="#393c40"
|
||||
header_text="#cfd8e6"
|
||||
header_text_hi="#e6f0ff"
|
||||
button="#393c40d9"
|
||||
button_title="#e6f0ff"
|
||||
button_text="#000000"
|
||||
button_text_hi="#e6f0ff"
|
||||
tab_active="#393c40"
|
||||
tab_inactive="#222426"
|
||||
tab_back="#2e3033d9"
|
||||
tab_outline="#2e3033">
|
||||
<panelcolors>
|
||||
<ThemePanelColors header="#222426ff"
|
||||
back="#393c40ff"
|
||||
show_header="FALSE"
|
||||
show_back="FALSE">
|
||||
</ThemePanelColors>
|
||||
</panelcolors>
|
||||
</ThemeSpaceGeneric>
|
||||
</space>
|
||||
</ThemeUserPreferences>
|
||||
</user_preferences>
|
||||
<console>
|
||||
<ThemeConsole line_output="#82a4d9"
|
||||
line_input="#cfd8e6"
|
||||
line_info="#acbf60"
|
||||
line_error="#d95757"
|
||||
cursor="#82a4d9"
|
||||
select="#7391bf33">
|
||||
<space>
|
||||
<ThemeSpaceGeneric back="#181a1c"
|
||||
title="#080809"
|
||||
text="#000000"
|
||||
text_hi="#e6f0ff"
|
||||
header="#393c40"
|
||||
header_text="#e6f0ff"
|
||||
header_text_hi="#e6f0ff"
|
||||
button="#393c40d9"
|
||||
button_title="#e6f0ff"
|
||||
button_text="#e6f0ff"
|
||||
button_text_hi="#e6f0ff"
|
||||
tab_active="#393c40"
|
||||
tab_inactive="#222426"
|
||||
tab_back="#2e3033d9"
|
||||
tab_outline="#2e3033">
|
||||
<panelcolors>
|
||||
<ThemePanelColors header="#222426ff"
|
||||
back="#393c40ff"
|
||||
show_header="FALSE"
|
||||
show_back="FALSE">
|
||||
</ThemePanelColors>
|
||||
</panelcolors>
|
||||
</ThemeSpaceGeneric>
|
||||
</space>
|
||||
</ThemeConsole>
|
||||
</console>
|
||||
<clip_editor>
|
||||
<ThemeClipEditor gp_vertex="#000000"
|
||||
gp_vertex_select="#f2aa3d"
|
||||
gp_vertex_size="1"
|
||||
marker_outline="#000000"
|
||||
marker="#7f7f20"
|
||||
active_marker="#ffffff"
|
||||
selected_marker="#ffff40"
|
||||
disabled_marker="#7f1313"
|
||||
locked_marker="#7f7f7f"
|
||||
path_before="#f23030"
|
||||
path_after="#365ad9"
|
||||
frame_current="#6282b3"
|
||||
strips="#0c0a0a"
|
||||
strips_selected="#95b5e6"
|
||||
handle_free="#000000"
|
||||
handle_auto="#909000"
|
||||
handle_align="#803060"
|
||||
handle_sel_free="#000000"
|
||||
handle_sel_auto="#f0ff40"
|
||||
handle_sel_align="#f090a0"
|
||||
handle_auto_clamped="#000000"
|
||||
handle_sel_auto_clamped="#000000"
|
||||
handle_vertex="#000000"
|
||||
handle_vertex_select="#ffff40"
|
||||
handle_vertex_size="4">
|
||||
<space>
|
||||
<ThemeSpaceGeneric back="#3e4147"
|
||||
title="#000000"
|
||||
text="#000000"
|
||||
text_hi="#e6f0ff"
|
||||
header="#393c40"
|
||||
header_text="#cfd8e6"
|
||||
header_text_hi="#e6f0ff"
|
||||
button="#393c40d9"
|
||||
button_title="#cfd8e6"
|
||||
button_text="#cfd8e6"
|
||||
button_text_hi="#e6f0ff"
|
||||
tab_active="#393c40"
|
||||
tab_inactive="#222426"
|
||||
tab_back="#2e3033d9"
|
||||
tab_outline="#2e3033">
|
||||
<panelcolors>
|
||||
<ThemePanelColors header="#222426ff"
|
||||
back="#393c40ff"
|
||||
show_header="FALSE"
|
||||
show_back="FALSE">
|
||||
</ThemePanelColors>
|
||||
</panelcolors>
|
||||
</ThemeSpaceGeneric>
|
||||
</space>
|
||||
<space_list>
|
||||
<ThemeSpaceListGeneric list="#393c40"
|
||||
list_title="#cfd8e6"
|
||||
list_text="#cfd8e6"
|
||||
list_text_hi="#f2b76d">
|
||||
</ThemeSpaceListGeneric>
|
||||
</space_list>
|
||||
</ThemeClipEditor>
|
||||
</clip_editor>
|
||||
<bone_color_sets>
|
||||
<ThemeBoneColorSet normal="#9a0000"
|
||||
select="#bd1111"
|
||||
active="#f70a0a"
|
||||
show_colored_constraints="FALSE">
|
||||
</ThemeBoneColorSet>
|
||||
<ThemeBoneColorSet normal="#f74018"
|
||||
select="#f66913"
|
||||
active="#fa9900"
|
||||
show_colored_constraints="FALSE">
|
||||
</ThemeBoneColorSet>
|
||||
<ThemeBoneColorSet normal="#1e9109"
|
||||
select="#59b70b"
|
||||
active="#83ef1d"
|
||||
show_colored_constraints="FALSE">
|
||||
</ThemeBoneColorSet>
|
||||
<ThemeBoneColorSet normal="#0a3694"
|
||||
select="#3667df"
|
||||
active="#5ec1ef"
|
||||
show_colored_constraints="FALSE">
|
||||
</ThemeBoneColorSet>
|
||||
<ThemeBoneColorSet normal="#a9294e"
|
||||
select="#c1416a"
|
||||
active="#f05d91"
|
||||
show_colored_constraints="FALSE">
|
||||
</ThemeBoneColorSet>
|
||||
<ThemeBoneColorSet normal="#430c78"
|
||||
select="#543aa3"
|
||||
active="#8764d5"
|
||||
show_colored_constraints="FALSE">
|
||||
</ThemeBoneColorSet>
|
||||
<ThemeBoneColorSet normal="#24785a"
|
||||
select="#3c9579"
|
||||
active="#6fb6ab"
|
||||
show_colored_constraints="FALSE">
|
||||
</ThemeBoneColorSet>
|
||||
<ThemeBoneColorSet normal="#4b707c"
|
||||
select="#6a8691"
|
||||
active="#9bc2cd"
|
||||
show_colored_constraints="FALSE">
|
||||
</ThemeBoneColorSet>
|
||||
<ThemeBoneColorSet normal="#f4c90c"
|
||||
select="#eec236"
|
||||
active="#f3ff00"
|
||||
show_colored_constraints="FALSE">
|
||||
</ThemeBoneColorSet>
|
||||
<ThemeBoneColorSet normal="#1e2024"
|
||||
select="#484c56"
|
||||
active="#ffffff"
|
||||
show_colored_constraints="FALSE">
|
||||
</ThemeBoneColorSet>
|
||||
<ThemeBoneColorSet normal="#6f2f6a"
|
||||
select="#9845be"
|
||||
active="#d330d6"
|
||||
show_colored_constraints="FALSE">
|
||||
</ThemeBoneColorSet>
|
||||
<ThemeBoneColorSet normal="#6c8e22"
|
||||
select="#7fb022"
|
||||
active="#bbef5b"
|
||||
show_colored_constraints="FALSE">
|
||||
</ThemeBoneColorSet>
|
||||
<ThemeBoneColorSet normal="#8d8d8d"
|
||||
select="#b0b0b0"
|
||||
active="#dedede"
|
||||
show_colored_constraints="FALSE">
|
||||
</ThemeBoneColorSet>
|
||||
<ThemeBoneColorSet normal="#834326"
|
||||
select="#8b5811"
|
||||
active="#bd6a11"
|
||||
show_colored_constraints="FALSE">
|
||||
</ThemeBoneColorSet>
|
||||
<ThemeBoneColorSet normal="#08310e"
|
||||
select="#1c430b"
|
||||
active="#34622b"
|
||||
show_colored_constraints="FALSE">
|
||||
</ThemeBoneColorSet>
|
||||
<ThemeBoneColorSet normal="#000000"
|
||||
select="#000000"
|
||||
active="#000000"
|
||||
show_colored_constraints="FALSE">
|
||||
</ThemeBoneColorSet>
|
||||
<ThemeBoneColorSet normal="#000000"
|
||||
select="#000000"
|
||||
active="#000000"
|
||||
show_colored_constraints="FALSE">
|
||||
</ThemeBoneColorSet>
|
||||
<ThemeBoneColorSet normal="#000000"
|
||||
select="#000000"
|
||||
active="#000000"
|
||||
show_colored_constraints="FALSE">
|
||||
</ThemeBoneColorSet>
|
||||
<ThemeBoneColorSet normal="#000000"
|
||||
select="#000000"
|
||||
active="#000000"
|
||||
show_colored_constraints="FALSE">
|
||||
</ThemeBoneColorSet>
|
||||
<ThemeBoneColorSet normal="#000000"
|
||||
select="#000000"
|
||||
active="#000000"
|
||||
show_colored_constraints="FALSE">
|
||||
</ThemeBoneColorSet>
|
||||
</bone_color_sets>
|
||||
</Theme>
|
||||
<ThemeStyle>
|
||||
<panel_title>
|
||||
<ThemeFontStyle points="11"
|
||||
font_kerning_style="FITTED"
|
||||
shadow="0"
|
||||
shadow_offset_x="1"
|
||||
shadow_offset_y="-1"
|
||||
shadow_alpha="0.15"
|
||||
shadow_value="0.1">
|
||||
</ThemeFontStyle>
|
||||
</panel_title>
|
||||
<widget_label>
|
||||
<ThemeFontStyle points="11"
|
||||
font_kerning_style="FITTED"
|
||||
shadow="0"
|
||||
shadow_offset_x="1"
|
||||
shadow_offset_y="-1"
|
||||
shadow_alpha="0"
|
||||
shadow_value="0">
|
||||
</ThemeFontStyle>
|
||||
</widget_label>
|
||||
<widget>
|
||||
<ThemeFontStyle points="11"
|
||||
font_kerning_style="FITTED"
|
||||
shadow="0"
|
||||
shadow_offset_x="0"
|
||||
shadow_offset_y="-1"
|
||||
shadow_alpha="0"
|
||||
shadow_value="0">
|
||||
</ThemeFontStyle>
|
||||
</widget>
|
||||
</ThemeStyle>
|
||||
</bpy>
|
||||
1179
release/scripts/presets/interface_theme/sandyslate.xml
Normal file
1179
release/scripts/presets/interface_theme/sandyslate.xml
Normal file
@@ -0,0 +1,1179 @@
|
||||
<bpy>
|
||||
<Theme>
|
||||
<user_interface>
|
||||
<ThemeUserInterface menu_shadow_fac="0.01"
|
||||
menu_shadow_width="2"
|
||||
icon_file=""
|
||||
icon_alpha="1"
|
||||
widget_emboss="#ffffff05"
|
||||
axis_x="#ff350e"
|
||||
axis_y="#94ff5d"
|
||||
axis_z="#3275ff">
|
||||
<wcol_regular>
|
||||
<ThemeWidgetColors outline="#000000"
|
||||
inner="#676c75ff"
|
||||
inner_sel="#fff0cfff"
|
||||
item="#1b1f28ff"
|
||||
text="#fff0cf"
|
||||
text_sel="#000000"
|
||||
show_shaded="FALSE"
|
||||
shadetop="-100"
|
||||
shadedown="0">
|
||||
</ThemeWidgetColors>
|
||||
</wcol_regular>
|
||||
<wcol_tool>
|
||||
<ThemeWidgetColors outline="#000000"
|
||||
inner="#696e77ff"
|
||||
inner_sel="#fff0cfff"
|
||||
item="#fff0cfff"
|
||||
text="#fff0cf"
|
||||
text_sel="#000000"
|
||||
show_shaded="TRUE"
|
||||
shadetop="20"
|
||||
shadedown="-20">
|
||||
</ThemeWidgetColors>
|
||||
</wcol_tool>
|
||||
<wcol_radio>
|
||||
<ThemeWidgetColors outline="#000000"
|
||||
inner="#696e77ff"
|
||||
inner_sel="#fff0cfff"
|
||||
item="#1b1f28ff"
|
||||
text="#fff0cf"
|
||||
text_sel="#000000"
|
||||
show_shaded="TRUE"
|
||||
shadetop="20"
|
||||
shadedown="-20">
|
||||
</ThemeWidgetColors>
|
||||
</wcol_radio>
|
||||
<wcol_text>
|
||||
<ThemeWidgetColors outline="#151515"
|
||||
inner="#696e77ff"
|
||||
inner_sel="#fff0cfff"
|
||||
item="#676c75ff"
|
||||
text="#fff0cf"
|
||||
text_sel="#000000"
|
||||
show_shaded="FALSE"
|
||||
shadetop="-30"
|
||||
shadedown="20">
|
||||
</ThemeWidgetColors>
|
||||
</wcol_text>
|
||||
<wcol_option>
|
||||
<ThemeWidgetColors outline="#151515"
|
||||
inner="#696e77ff"
|
||||
inner_sel="#fff0cfff"
|
||||
item="#000000ff"
|
||||
text="#fff0cf"
|
||||
text_sel="#fff0cf"
|
||||
show_shaded="FALSE"
|
||||
shadetop="-40"
|
||||
shadedown="10">
|
||||
</ThemeWidgetColors>
|
||||
</wcol_option>
|
||||
<wcol_toggle>
|
||||
<ThemeWidgetColors outline="#151515"
|
||||
inner="#676c75ff"
|
||||
inner_sel="#fff0cfff"
|
||||
item="#191d26ff"
|
||||
text="#fff0cf"
|
||||
text_sel="#000000"
|
||||
show_shaded="TRUE"
|
||||
shadetop="20"
|
||||
shadedown="-20">
|
||||
</ThemeWidgetColors>
|
||||
</wcol_toggle>
|
||||
<wcol_num>
|
||||
<ThemeWidgetColors outline="#151515"
|
||||
inner="#696e77ff"
|
||||
inner_sel="#fff0cfff"
|
||||
item="#fff0cfff"
|
||||
text="#fff0cf"
|
||||
text_sel="#000000"
|
||||
show_shaded="TRUE"
|
||||
shadetop="20"
|
||||
shadedown="-20">
|
||||
</ThemeWidgetColors>
|
||||
</wcol_num>
|
||||
<wcol_numslider>
|
||||
<ThemeWidgetColors outline="#131313"
|
||||
inner="#fdeecdff"
|
||||
inner_sel="#f9eac9ff"
|
||||
item="#656a73ff"
|
||||
text="#000000"
|
||||
text_sel="#000000"
|
||||
show_shaded="FALSE"
|
||||
shadetop="20"
|
||||
shadedown="-20">
|
||||
</ThemeWidgetColors>
|
||||
</wcol_numslider>
|
||||
<wcol_box>
|
||||
<ThemeWidgetColors outline="#0f0f0f"
|
||||
inner="#83817bff"
|
||||
inner_sel="#fff0cfff"
|
||||
item="#191d26ff"
|
||||
text="#fff0cf"
|
||||
text_sel="#000000"
|
||||
show_shaded="FALSE"
|
||||
shadetop="30"
|
||||
shadedown="-20">
|
||||
</ThemeWidgetColors>
|
||||
</wcol_box>
|
||||
<wcol_menu>
|
||||
<ThemeWidgetColors outline="#111111"
|
||||
inner="#656a73ff"
|
||||
inner_sel="#fff0cfff"
|
||||
item="#fff0ffff"
|
||||
text="#fff0cd"
|
||||
text_sel="#000000"
|
||||
show_shaded="TRUE"
|
||||
shadetop="20"
|
||||
shadedown="-20">
|
||||
</ThemeWidgetColors>
|
||||
</wcol_menu>
|
||||
<wcol_pulldown>
|
||||
<ThemeWidgetColors outline="#151922"
|
||||
inner="#656a73ff"
|
||||
inner_sel="#676c75ff"
|
||||
item="#171b24ff"
|
||||
text="#fff0cf"
|
||||
text_sel="#fdeecd"
|
||||
show_shaded="TRUE"
|
||||
shadetop="20"
|
||||
shadedown="-20">
|
||||
</ThemeWidgetColors>
|
||||
</wcol_pulldown>
|
||||
<wcol_menu_back>
|
||||
<ThemeWidgetColors outline="#000000"
|
||||
inner="#636871ff"
|
||||
inner_sel="#656a73ff"
|
||||
item="#000000ff"
|
||||
text="#ffedc5"
|
||||
text_sel="#000000"
|
||||
show_shaded="FALSE"
|
||||
shadetop="-100"
|
||||
shadedown="0">
|
||||
</ThemeWidgetColors>
|
||||
</wcol_menu_back>
|
||||
<wcol_pie_menu>
|
||||
<ThemeWidgetColors outline="#0a0a0a"
|
||||
inner="#aaaaaae6"
|
||||
inner_sel="#8c8c8cff"
|
||||
item="#a2a2a2e6"
|
||||
text="#000000"
|
||||
text_sel="#ffffff"
|
||||
show_shaded="TRUE"
|
||||
shadetop="10"
|
||||
shadedown="-10">
|
||||
</ThemeWidgetColors>
|
||||
</wcol_pie_menu>
|
||||
<wcol_tooltip>
|
||||
<ThemeWidgetColors outline="#111111"
|
||||
inner="#676c75ff"
|
||||
inner_sel="#2d2d2de6"
|
||||
item="#656a73ff"
|
||||
text="#fff0cf"
|
||||
text_sel="#fdeecd"
|
||||
show_shaded="FALSE"
|
||||
shadetop="25"
|
||||
shadedown="-20">
|
||||
</ThemeWidgetColors>
|
||||
</wcol_tooltip>
|
||||
<wcol_menu_item>
|
||||
<ThemeWidgetColors outline="#000000"
|
||||
inner="#676c75ff"
|
||||
inner_sel="#fbeccbff"
|
||||
item="#656a73ff"
|
||||
text="#fdeecd"
|
||||
text_sel="#000000"
|
||||
show_shaded="FALSE"
|
||||
shadetop="20"
|
||||
shadedown="-20">
|
||||
</ThemeWidgetColors>
|
||||
</wcol_menu_item>
|
||||
<wcol_scroll>
|
||||
<ThemeWidgetColors outline="#0d0d0d"
|
||||
inner="#fff0cfff"
|
||||
inner_sel="#83817bff"
|
||||
item="#696e77ff"
|
||||
text="#fdfdfd"
|
||||
text_sel="#ffffff"
|
||||
show_shaded="TRUE"
|
||||
shadetop="35"
|
||||
shadedown="-34">
|
||||
</ThemeWidgetColors>
|
||||
</wcol_scroll>
|
||||
<wcol_progress>
|
||||
<ThemeWidgetColors outline="#0b0b0b"
|
||||
inner="#1b1f28ff"
|
||||
inner_sel="#ff0000ff"
|
||||
item="#fd0000ff"
|
||||
text="#fdfdfd"
|
||||
text_sel="#ffffff"
|
||||
show_shaded="FALSE"
|
||||
shadetop="-100"
|
||||
shadedown="0">
|
||||
</ThemeWidgetColors>
|
||||
</wcol_progress>
|
||||
<wcol_list_item>
|
||||
<ThemeWidgetColors outline="#171b24"
|
||||
inner="#676c75ff"
|
||||
inner_sel="#fdeecdff"
|
||||
item="#676c75ff"
|
||||
text="#fff0cf"
|
||||
text_sel="#000000"
|
||||
show_shaded="FALSE"
|
||||
shadetop="-100"
|
||||
shadedown="0">
|
||||
</ThemeWidgetColors>
|
||||
</wcol_list_item>
|
||||
<wcol_state>
|
||||
<ThemeWidgetStateColors inner_anim="#56ff00"
|
||||
inner_anim_sel="#56ff00"
|
||||
inner_key="#fff400"
|
||||
inner_key_sel="#fff400"
|
||||
inner_driven="#629400"
|
||||
inner_driven_sel="#609200"
|
||||
blend="0.1">
|
||||
</ThemeWidgetStateColors>
|
||||
</wcol_state>
|
||||
</ThemeUserInterface>
|
||||
</user_interface>
|
||||
<view_3d>
|
||||
<ThemeView3D grid="#444444"
|
||||
wire="#9eb6cd"
|
||||
wire_edit="#22272d"
|
||||
gp_vertex="#000000"
|
||||
gp_vertex_select="#ff8500"
|
||||
gp_vertex_size="3"
|
||||
lamp="#ff000080"
|
||||
speaker="#979797"
|
||||
camera="#ff0000"
|
||||
view_overlay="#000000"
|
||||
empty="#fd0000"
|
||||
object_selected="#dfc7a1"
|
||||
object_active="#f6e4ba"
|
||||
object_grouped="#1cae1c"
|
||||
object_grouped_active="#55bb55"
|
||||
transform="#ffffff"
|
||||
vertex="#9cb4cb"
|
||||
vertex_select="#f4e2b8"
|
||||
vertex_size="3"
|
||||
vertex_unreferenced="#000000"
|
||||
edge_select="#f4e2b8"
|
||||
edge_seam="#5300db"
|
||||
edge_sharp="#fb0000"
|
||||
edge_crease="#24a1ff"
|
||||
edge_facesel="#797979"
|
||||
freestyle_edge_mark="#7fff7f"
|
||||
face="#9eb6cd33"
|
||||
face_select="#bcb28c33"
|
||||
face_dot="#f4e2b8"
|
||||
facedot_size="3"
|
||||
freestyle_face_mark="#7fff7f33"
|
||||
nurb_uline="#909000"
|
||||
nurb_vline="#803060"
|
||||
nurb_sel_uline="#f0ff40"
|
||||
nurb_sel_vline="#f090a0"
|
||||
act_spline="#fb0000"
|
||||
handle_free="#7f7f7f"
|
||||
handle_auto="#909000"
|
||||
handle_vect="#409030"
|
||||
handle_sel_vect="#40c030"
|
||||
handle_align="#804061"
|
||||
handle_sel_free="#3b3b3b"
|
||||
handle_sel_auto="#f0ff40"
|
||||
handle_sel_align="#f07fae"
|
||||
lastsel_point="#ffffff"
|
||||
extra_edge_len="#ffedf8"
|
||||
extra_edge_angle="#fd9700"
|
||||
extra_face_angle="#d60000"
|
||||
extra_face_area="#91a7c2"
|
||||
editmesh_active="#ffffffff"
|
||||
normal="#5ba4ed"
|
||||
vertex_normal="#d60000"
|
||||
split_normal="#dd23dd"
|
||||
bone_solid="#c8c8c8"
|
||||
bone_pose="#50c8ff"
|
||||
bone_pose_active="#8cffff"
|
||||
frame_current="#f6e824"
|
||||
outline_width="1"
|
||||
bundle_solid="#c8c8c8"
|
||||
camera_path="#5a5a5a"
|
||||
skin_root="#b44d4d"
|
||||
clipping_border_3d="#313131ff"
|
||||
text_keyframe="#ddd700"
|
||||
text_grease_pencil="#b5e61d"
|
||||
paint_curve_handle="#7fff7f7f"
|
||||
paint_curve_pivot="#ff7f7f7f">
|
||||
<space>
|
||||
<ThemeSpaceGradient title="#ffffff"
|
||||
text="#fff0cf"
|
||||
text_hi="#ffffff"
|
||||
header="#83817b"
|
||||
header_text="#fdfdfd"
|
||||
header_text_hi="#ffffff"
|
||||
button="#83817bff"
|
||||
button_title="#fff0cf"
|
||||
button_text="#fff0cf"
|
||||
button_text_hi="#ffffff"
|
||||
tab_active="#656a73"
|
||||
tab_inactive="#7f7d77"
|
||||
tab_back="#83817bff"
|
||||
tab_outline="#000000">
|
||||
<gradients>
|
||||
<ThemeGradientColors show_grad="FALSE"
|
||||
gradient="#191d26"
|
||||
high_gradient="#636871">
|
||||
</ThemeGradientColors>
|
||||
</gradients>
|
||||
<panelcolors>
|
||||
<ThemePanelColors header="#00000002"
|
||||
back="#000000ff"
|
||||
show_header="FALSE"
|
||||
show_back="FALSE">
|
||||
</ThemePanelColors>
|
||||
</panelcolors>
|
||||
</ThemeSpaceGradient>
|
||||
</space>
|
||||
</ThemeView3D>
|
||||
</view_3d>
|
||||
<graph_editor>
|
||||
<ThemeGraphEditor grid="#262626"
|
||||
frame_current="#336622"
|
||||
window_sliders="#969696"
|
||||
channels_region="#6d6d6d"
|
||||
dopesheet_channel="#52606e"
|
||||
dopesheet_subchannel="#7c8996"
|
||||
channel_group="#4f6549"
|
||||
active_channels_group="#87b17d"
|
||||
vertex="#ffffff"
|
||||
vertex_select="#ff8500"
|
||||
vertex_size="3"
|
||||
vertex_unreferenced="#000000"
|
||||
handle_free="#808080"
|
||||
handle_auto="#909000"
|
||||
handle_vect="#409030"
|
||||
handle_sel_vect="#40c030"
|
||||
handle_align="#803060"
|
||||
handle_sel_free="#808080"
|
||||
handle_sel_auto="#f0ff40"
|
||||
handle_sel_align="#f090a0"
|
||||
handle_auto_clamped="#994030"
|
||||
handle_sel_auto_clamped="#f0af90"
|
||||
lastsel_point="#808080"
|
||||
handle_vertex="#808080"
|
||||
handle_vertex_select="#ff8500"
|
||||
handle_vertex_size="3">
|
||||
<space>
|
||||
<ThemeSpaceGeneric back="#83817b"
|
||||
title="#fff0cf"
|
||||
text="#fff0cf"
|
||||
text_hi="#ffffff"
|
||||
header="#83817b"
|
||||
header_text="#ffffff"
|
||||
header_text_hi="#fff0cf"
|
||||
button="#83817b7f"
|
||||
button_title="#fff0cf"
|
||||
button_text="#fff0cf"
|
||||
button_text_hi="#ffffff"
|
||||
tab_active="#676c75"
|
||||
tab_inactive="#83817b"
|
||||
tab_back="#83817bff"
|
||||
tab_outline="#000000">
|
||||
<panelcolors>
|
||||
<ThemePanelColors header="#00000002"
|
||||
back="#7272727f"
|
||||
show_header="FALSE"
|
||||
show_back="FALSE">
|
||||
</ThemePanelColors>
|
||||
</panelcolors>
|
||||
</ThemeSpaceGeneric>
|
||||
</space>
|
||||
<space_list>
|
||||
<ThemeSpaceListGeneric list="#83817b"
|
||||
list_title="#000000"
|
||||
list_text="#bbbbbb"
|
||||
list_text_hi="#ffffff">
|
||||
</ThemeSpaceListGeneric>
|
||||
</space_list>
|
||||
</ThemeGraphEditor>
|
||||
</graph_editor>
|
||||
<file_browser>
|
||||
<ThemeFileBrowser selected_file="#c7d3e4">
|
||||
<space>
|
||||
<ThemeSpaceGeneric back="#5f646d"
|
||||
title="#5d5d5d"
|
||||
text="#ffe8d1"
|
||||
text_hi="#ffffff"
|
||||
header="#636871"
|
||||
header_text="#ffffff"
|
||||
header_text_hi="#ffffff"
|
||||
button="#636871ff"
|
||||
button_title="#ffffff"
|
||||
button_text="#ffffff"
|
||||
button_text_hi="#ffffff"
|
||||
tab_active="#61666f"
|
||||
tab_inactive="#83817b"
|
||||
tab_back="#83817bff"
|
||||
tab_outline="#000000">
|
||||
<panelcolors>
|
||||
<ThemePanelColors header="#00000002"
|
||||
back="#7272727f"
|
||||
show_header="FALSE"
|
||||
show_back="FALSE">
|
||||
</ThemePanelColors>
|
||||
</panelcolors>
|
||||
</ThemeSpaceGeneric>
|
||||
</space>
|
||||
<space_list>
|
||||
<ThemeSpaceListGeneric list="#83817b"
|
||||
list_title="#fdeecd"
|
||||
list_text="#5d5d5d"
|
||||
list_text_hi="#ffffff">
|
||||
</ThemeSpaceListGeneric>
|
||||
</space_list>
|
||||
</ThemeFileBrowser>
|
||||
</file_browser>
|
||||
<nla_editor>
|
||||
<ThemeNLAEditor grid="#5e5e5e"
|
||||
view_sliders="#969696"
|
||||
active_action="#cc701a66"
|
||||
active_action_unset="#9987614d"
|
||||
strips="#aa8d8d"
|
||||
strips_selected="#ff8c00"
|
||||
transition_strips="#1c2630"
|
||||
transition_strips_selected="#2e75db"
|
||||
meta_strips="#332642"
|
||||
meta_strips_selected="#692196"
|
||||
sound_strips="#2b3d3d"
|
||||
sound_strips_selected="#1f7a7a"
|
||||
tweak="#4df31a"
|
||||
tweak_duplicate="#d90000"
|
||||
keyframe_border="#000000ff"
|
||||
keyframe_border_selected="#000000ff"
|
||||
frame_current="#2f6421">
|
||||
<space>
|
||||
<ThemeSpaceGeneric back="#83817b"
|
||||
title="#585858"
|
||||
text="#fff0cf"
|
||||
text_hi="#ffffff"
|
||||
header="#83817b"
|
||||
header_text="#ffffff"
|
||||
header_text_hi="#ffffff"
|
||||
button="#83817b7f"
|
||||
button_title="#f1f1f1"
|
||||
button_text="#fff0cf"
|
||||
button_text_hi="#ffffff"
|
||||
tab_active="#676c75"
|
||||
tab_inactive="#83817b"
|
||||
tab_back="#83817bff"
|
||||
tab_outline="#000000">
|
||||
<panelcolors>
|
||||
<ThemePanelColors header="#00000002"
|
||||
back="#7272727f"
|
||||
show_header="FALSE"
|
||||
show_back="FALSE">
|
||||
</ThemePanelColors>
|
||||
</panelcolors>
|
||||
</ThemeSpaceGeneric>
|
||||
</space>
|
||||
<space_list>
|
||||
<ThemeSpaceListGeneric list="#83817b"
|
||||
list_title="#383838"
|
||||
list_text="#d8d8d8"
|
||||
list_text_hi="#ffffff">
|
||||
</ThemeSpaceListGeneric>
|
||||
</space_list>
|
||||
</ThemeNLAEditor>
|
||||
</nla_editor>
|
||||
<dopesheet_editor>
|
||||
<ThemeDopeSheet grid="#212121"
|
||||
frame_current="#2a5c1c"
|
||||
value_sliders="#000000"
|
||||
view_sliders="#969696"
|
||||
dopesheet_channel="#52606e"
|
||||
dopesheet_subchannel="#7c8996"
|
||||
channels="#707070"
|
||||
channels_selected="#60c040"
|
||||
channel_group="#4f6549"
|
||||
active_channels_group="#87b17d"
|
||||
long_key="#0c0a0a"
|
||||
long_key_selected="#4798ff"
|
||||
keyframe="#e8e8e8"
|
||||
keyframe_selected="#ffbe32"
|
||||
keyframe_extreme="#e8b3cc"
|
||||
keyframe_extreme_selected="#f28080"
|
||||
keyframe_breakdown="#b3dbe8"
|
||||
keyframe_breakdown_selected="#54bfed"
|
||||
keyframe_jitter="#94e575"
|
||||
keyframe_jitter_selected="#61c042"
|
||||
keyframe_border="#000000ff"
|
||||
keyframe_border_selected="#000000ff"
|
||||
summary="#767b83cc">
|
||||
<space>
|
||||
<ThemeSpaceGeneric back="#83817b"
|
||||
title="#fbeccb"
|
||||
text="#fff0cf"
|
||||
text_hi="#fdeecd"
|
||||
header="#83817b"
|
||||
header_text="#5b5b5b"
|
||||
header_text_hi="#fbeccb"
|
||||
button="#83817b7f"
|
||||
button_title="#fbeccb"
|
||||
button_text="#fdeecd"
|
||||
button_text_hi="#fbeccb"
|
||||
tab_active="#676c75"
|
||||
tab_inactive="#83817b"
|
||||
tab_back="#83817bff"
|
||||
tab_outline="#000000">
|
||||
<panelcolors>
|
||||
<ThemePanelColors header="#00000002"
|
||||
back="#7272727f"
|
||||
show_header="FALSE"
|
||||
show_back="FALSE">
|
||||
</ThemePanelColors>
|
||||
</panelcolors>
|
||||
</ThemeSpaceGeneric>
|
||||
</space>
|
||||
<space_list>
|
||||
<ThemeSpaceListGeneric list="#83817b"
|
||||
list_title="#9c9c9c"
|
||||
list_text="#fbeccb"
|
||||
list_text_hi="#ffffff">
|
||||
</ThemeSpaceListGeneric>
|
||||
</space_list>
|
||||
</ThemeDopeSheet>
|
||||
</dopesheet_editor>
|
||||
<image_editor>
|
||||
<ThemeImageEditor gp_vertex="#000000"
|
||||
gp_vertex_select="#ff8500"
|
||||
gp_vertex_size="3"
|
||||
vertex="#fffcfc"
|
||||
vertex_select="#fb8d4a"
|
||||
vertex_size="3"
|
||||
vertex_unreferenced="#000000"
|
||||
face="#ffffff0a"
|
||||
face_select="#f98b483c"
|
||||
face_dot="#fb8d4a"
|
||||
facedot_size="3"
|
||||
freestyle_face_mark="#7fff7f33"
|
||||
editmesh_active="#ffffff80"
|
||||
wire_edit="#c0c0c0"
|
||||
edge_select="#fb8d4a"
|
||||
scope_back="#050505ff"
|
||||
preview_stitch_face="#1242b026"
|
||||
preview_stitch_edge="#ff8500b2"
|
||||
preview_stitch_vert="#ff85007f"
|
||||
preview_stitch_stitchable="#00ff00ff"
|
||||
preview_stitch_unstitchable="#ff0000ff"
|
||||
preview_stitch_active="#e1d2c323"
|
||||
uv_shadow="#707070ff"
|
||||
uv_others="#606060ff"
|
||||
frame_current="#60c040"
|
||||
metadatabg="#000000"
|
||||
metadatatext="#ffffff"
|
||||
handle_free="#000000"
|
||||
handle_auto="#909000"
|
||||
handle_align="#803060"
|
||||
handle_sel_free="#000000"
|
||||
handle_sel_auto="#f0ff40"
|
||||
handle_sel_align="#f090a0"
|
||||
handle_auto_clamped="#000000"
|
||||
handle_sel_auto_clamped="#000000"
|
||||
handle_vertex="#000000"
|
||||
handle_vertex_select="#ffff00"
|
||||
handle_vertex_size="5"
|
||||
paint_curve_handle="#7fff7f7f"
|
||||
paint_curve_pivot="#ff7f7f7f">
|
||||
<space>
|
||||
<ThemeSpaceGeneric back="#83817b"
|
||||
title="#5d5d5d"
|
||||
text="#fff0cf"
|
||||
text_hi="#ffffff"
|
||||
header="#83817b"
|
||||
header_text="#fdfdfd"
|
||||
header_text_hi="#ffffff"
|
||||
button="#83817b7f"
|
||||
button_title="#c5c5c5"
|
||||
button_text="#ffffff"
|
||||
button_text_hi="#ffffff"
|
||||
tab_active="#676c75"
|
||||
tab_inactive="#817f79"
|
||||
tab_back="#83817bff"
|
||||
tab_outline="#000000">
|
||||
<panelcolors>
|
||||
<ThemePanelColors header="#00000002"
|
||||
back="#7272727f"
|
||||
show_header="FALSE"
|
||||
show_back="FALSE">
|
||||
</ThemePanelColors>
|
||||
</panelcolors>
|
||||
</ThemeSpaceGeneric>
|
||||
</space>
|
||||
</ThemeImageEditor>
|
||||
</image_editor>
|
||||
<sequence_editor>
|
||||
<ThemeSequenceEditor gp_vertex="#000000"
|
||||
gp_vertex_select="#ff8500"
|
||||
gp_vertex_size="3"
|
||||
grid="#282828"
|
||||
window_sliders="#a0a0a0"
|
||||
movie_strip="#516987"
|
||||
movieclip_strip="#20208f"
|
||||
image_strip="#6d5881"
|
||||
scene_strip="#4e983e"
|
||||
audio_strip="#2e8f8f"
|
||||
effect_strip="#a9547c"
|
||||
transition_strip="#a25f6f"
|
||||
meta_strip="#6d9183"
|
||||
text_strip="#a29700"
|
||||
frame_current="#2f5f23"
|
||||
keyframe="#ff8500"
|
||||
draw_action="#50c8ff"
|
||||
preview_back="#000000"
|
||||
metadatabg="#000000"
|
||||
metadatatext="#ffffff">
|
||||
<space>
|
||||
<ThemeSpaceGeneric back="#abaaa6"
|
||||
title="#5d5d5d"
|
||||
text="#f3f3f3"
|
||||
text_hi="#ffffff"
|
||||
header="#83817b"
|
||||
header_text="#f3f3f3"
|
||||
header_text_hi="#ffffff"
|
||||
button="#1b1f287f"
|
||||
button_title="#fdfdfd"
|
||||
button_text="#dddddd"
|
||||
button_text_hi="#ffffff"
|
||||
tab_active="#676c75"
|
||||
tab_inactive="#83817b"
|
||||
tab_back="#83817bff"
|
||||
tab_outline="#000000">
|
||||
<panelcolors>
|
||||
<ThemePanelColors header="#00000002"
|
||||
back="#7272727f"
|
||||
show_header="FALSE"
|
||||
show_back="FALSE">
|
||||
</ThemePanelColors>
|
||||
</panelcolors>
|
||||
</ThemeSpaceGeneric>
|
||||
</space>
|
||||
</ThemeSequenceEditor>
|
||||
</sequence_editor>
|
||||
<properties>
|
||||
<ThemeProperties>
|
||||
<space>
|
||||
<ThemeSpaceGeneric back="#83817b"
|
||||
title="#eedab0"
|
||||
text="#f0dcb2"
|
||||
text_hi="#ffffff"
|
||||
header="#83817b"
|
||||
header_text="#ffffff"
|
||||
header_text_hi="#ffffff"
|
||||
button="#83817bff"
|
||||
button_title="#ffffff"
|
||||
button_text="#ecd8ae"
|
||||
button_text_hi="#ffffff"
|
||||
tab_active="#83817b"
|
||||
tab_inactive="#6a6f77"
|
||||
tab_back="#83817bff"
|
||||
tab_outline="#191d26">
|
||||
<panelcolors>
|
||||
<ThemePanelColors header="#00000002"
|
||||
back="#7272727f"
|
||||
show_header="FALSE"
|
||||
show_back="FALSE">
|
||||
</ThemePanelColors>
|
||||
</panelcolors>
|
||||
</ThemeSpaceGeneric>
|
||||
</space>
|
||||
</ThemeProperties>
|
||||
</properties>
|
||||
<text_editor>
|
||||
<ThemeTextEditor line_numbers_background="#191919"
|
||||
selected_text="#faf4ff"
|
||||
cursor="#83817b"
|
||||
syntax_builtin="#cf3d99"
|
||||
syntax_symbols="#4c4c4c"
|
||||
syntax_special="#969629"
|
||||
syntax_preprocessor="#32008c"
|
||||
syntax_reserved="#8c3c00"
|
||||
syntax_comment="#249d60"
|
||||
syntax_string="#cc3535"
|
||||
syntax_numbers="#3c68ff">
|
||||
<space>
|
||||
<ThemeSpaceGeneric back="#83817b"
|
||||
title="#9e9e9e"
|
||||
text="#fff0cf"
|
||||
text_hi="#fff0cf"
|
||||
header="#83817b"
|
||||
header_text="#fff0cf"
|
||||
header_text_hi="#fff0cf"
|
||||
button="#1b1f287f"
|
||||
button_title="#fff0cf"
|
||||
button_text="#fff0cf"
|
||||
button_text_hi="#fff0cf"
|
||||
tab_active="#676c75"
|
||||
tab_inactive="#83817b"
|
||||
tab_back="#83817bff"
|
||||
tab_outline="#191d26">
|
||||
<panelcolors>
|
||||
<ThemePanelColors header="#00000002"
|
||||
back="#7272727f"
|
||||
show_header="FALSE"
|
||||
show_back="FALSE">
|
||||
</ThemePanelColors>
|
||||
</panelcolors>
|
||||
</ThemeSpaceGeneric>
|
||||
</space>
|
||||
</ThemeTextEditor>
|
||||
</text_editor>
|
||||
<timeline>
|
||||
<ThemeTimeline grid="#2e2f34"
|
||||
frame_current="#be0000"
|
||||
time_keyframe="#ddd700"
|
||||
time_grease_pencil="#b5e61d">
|
||||
<space>
|
||||
<ThemeSpaceGeneric back="#696e76"
|
||||
title="#ffffff"
|
||||
text="#fff0cf"
|
||||
text_hi="#ffffff"
|
||||
header="#83817b"
|
||||
header_text="#ffffff"
|
||||
header_text_hi="#ffffff"
|
||||
button="#4444447f"
|
||||
button_title="#ffffff"
|
||||
button_text="#dbd8d8"
|
||||
button_text_hi="#fafafa"
|
||||
tab_active="#6b7078"
|
||||
tab_inactive="#6d727a"
|
||||
tab_back="#83817bff"
|
||||
tab_outline="#000000">
|
||||
<panelcolors>
|
||||
<ThemePanelColors header="#00000002"
|
||||
back="#7272727f"
|
||||
show_header="FALSE"
|
||||
show_back="FALSE">
|
||||
</ThemePanelColors>
|
||||
</panelcolors>
|
||||
</ThemeSpaceGeneric>
|
||||
</space>
|
||||
</ThemeTimeline>
|
||||
</timeline>
|
||||
<node_editor>
|
||||
<ThemeNodeEditor gp_vertex="#000000"
|
||||
gp_vertex_select="#ff8500"
|
||||
gp_vertex_size="3"
|
||||
node_selected="#bebebe"
|
||||
node_active="#ffffff"
|
||||
wire="#fff0cf"
|
||||
wire_inner="#737373"
|
||||
wire_select="#fff0cf"
|
||||
selected_text="#7f7070"
|
||||
node_backdrop="#4a4b5aff"
|
||||
converter_node="#005fa5"
|
||||
color_node="#ac0900"
|
||||
group_node="#253b5c"
|
||||
group_socket_node="#dfbb2e"
|
||||
frame_node="#9b9b9ba0"
|
||||
matte_node="#7200b7"
|
||||
distor_node="#6eadb7"
|
||||
noodle_curving="10"
|
||||
input_node="#ff5b00"
|
||||
output_node="#191d26"
|
||||
filter_node="#cf0097"
|
||||
vector_node="#1edd00"
|
||||
texture_node="#002cd7"
|
||||
shader_node="#ff0000"
|
||||
script_node="#562619"
|
||||
pattern_node="#6ab5e4"
|
||||
layout_node="#cb7c00">
|
||||
<space>
|
||||
<ThemeSpaceGeneric back="#656a73"
|
||||
title="#ffffff"
|
||||
text="#ffffff"
|
||||
text_hi="#ffffff"
|
||||
header="#83817b"
|
||||
header_text="#fdfdfd"
|
||||
header_text_hi="#ffffff"
|
||||
button="#83817b7f"
|
||||
button_title="#ffffff"
|
||||
button_text="#ffffff"
|
||||
button_text_hi="#ffffff"
|
||||
tab_active="#676c75"
|
||||
tab_inactive="#83817b"
|
||||
tab_back="#83817bff"
|
||||
tab_outline="#000000">
|
||||
<panelcolors>
|
||||
<ThemePanelColors header="#00000002"
|
||||
back="#7272727f"
|
||||
show_header="FALSE"
|
||||
show_back="FALSE">
|
||||
</ThemePanelColors>
|
||||
</panelcolors>
|
||||
</ThemeSpaceGeneric>
|
||||
</space>
|
||||
<space_list>
|
||||
<ThemeSpaceListGeneric list="#a5a5a5"
|
||||
list_title="#ffffff"
|
||||
list_text="#ffffff"
|
||||
list_text_hi="#b8ffff">
|
||||
</ThemeSpaceListGeneric>
|
||||
</space_list>
|
||||
</ThemeNodeEditor>
|
||||
</node_editor>
|
||||
<logic_editor>
|
||||
<ThemeLogicEditor>
|
||||
<space>
|
||||
<ThemeSpaceGeneric back="#aaa9a5"
|
||||
title="#5d5d5d"
|
||||
text="#fafafa"
|
||||
text_hi="#ffffff"
|
||||
header="#83817b"
|
||||
header_text="#fdfdfd"
|
||||
header_text_hi="#ffffff"
|
||||
button="#83817b7f"
|
||||
button_title="#fdfdfd"
|
||||
button_text="#c3c3c3"
|
||||
button_text_hi="#ffffff"
|
||||
tab_active="#676c75"
|
||||
tab_inactive="#83817b"
|
||||
tab_back="#83817bff"
|
||||
tab_outline="#191d26">
|
||||
<panelcolors>
|
||||
<ThemePanelColors header="#00000002"
|
||||
back="#7272727f"
|
||||
show_header="FALSE"
|
||||
show_back="FALSE">
|
||||
</ThemePanelColors>
|
||||
</panelcolors>
|
||||
</ThemeSpaceGeneric>
|
||||
</space>
|
||||
</ThemeLogicEditor>
|
||||
</logic_editor>
|
||||
<outliner>
|
||||
<ThemeOutliner match="#30b5e9"
|
||||
selected_highlight="#696e77">
|
||||
<space>
|
||||
<ThemeSpaceGeneric back="#83817b"
|
||||
title="#9b9b9b"
|
||||
text="#000000"
|
||||
text_hi="#fff0cf"
|
||||
header="#83817b"
|
||||
header_text="#ffffff"
|
||||
header_text_hi="#ffffff"
|
||||
button="#999999ff"
|
||||
button_title="#000000"
|
||||
button_text="#fdfdfd"
|
||||
button_text_hi="#ffffff"
|
||||
tab_active="#676c75"
|
||||
tab_inactive="#83817b"
|
||||
tab_back="#83817bff"
|
||||
tab_outline="#000000">
|
||||
<panelcolors>
|
||||
<ThemePanelColors header="#00000002"
|
||||
back="#7272727f"
|
||||
show_header="FALSE"
|
||||
show_back="FALSE">
|
||||
</ThemePanelColors>
|
||||
</panelcolors>
|
||||
</ThemeSpaceGeneric>
|
||||
</space>
|
||||
</ThemeOutliner>
|
||||
</outliner>
|
||||
<info>
|
||||
<ThemeInfo info_selected="#6080ff"
|
||||
info_selected_text="#ffffff"
|
||||
info_error="#dc0000"
|
||||
info_error_text="#000000"
|
||||
info_warning="#dc8060"
|
||||
info_warning_text="#000000"
|
||||
info_info="#00aa00"
|
||||
info_info_text="#000000"
|
||||
info_debug="#c4c4c4"
|
||||
info_debug_text="#000000">
|
||||
<space>
|
||||
<ThemeSpaceGeneric back="#83817b"
|
||||
title="#ffffff"
|
||||
text="#fff0cf"
|
||||
text_hi="#ffffff"
|
||||
header="#83817b"
|
||||
header_text="#ffffff"
|
||||
header_text_hi="#ffffff"
|
||||
button="#83817bff"
|
||||
button_title="#ffffff"
|
||||
button_text="#ffffff"
|
||||
button_text_hi="#ffffff"
|
||||
tab_active="#676c75"
|
||||
tab_inactive="#83817b"
|
||||
tab_back="#83817bff"
|
||||
tab_outline="#000000">
|
||||
<panelcolors>
|
||||
<ThemePanelColors header="#21252c02"
|
||||
back="#7272727f"
|
||||
show_header="FALSE"
|
||||
show_back="FALSE">
|
||||
</ThemePanelColors>
|
||||
</panelcolors>
|
||||
</ThemeSpaceGeneric>
|
||||
</space>
|
||||
</ThemeInfo>
|
||||
</info>
|
||||
<user_preferences>
|
||||
<ThemeUserPreferences>
|
||||
<space>
|
||||
<ThemeSpaceGeneric back="#83817b"
|
||||
title="#5d5d5d"
|
||||
text="#fff0cf"
|
||||
text_hi="#5d5d5d"
|
||||
header="#83817b"
|
||||
header_text="#fbeccb"
|
||||
header_text_hi="#f9eac9"
|
||||
button="#0000007f"
|
||||
button_title="#fff0cf"
|
||||
button_text="#fbeccb"
|
||||
button_text_hi="#fdeecd"
|
||||
tab_active="#656a73"
|
||||
tab_inactive="#83817b"
|
||||
tab_back="#83817bff"
|
||||
tab_outline="#000000">
|
||||
<panelcolors>
|
||||
<ThemePanelColors header="#00000002"
|
||||
back="#7272727f"
|
||||
show_header="FALSE"
|
||||
show_back="FALSE">
|
||||
</ThemePanelColors>
|
||||
</panelcolors>
|
||||
</ThemeSpaceGeneric>
|
||||
</space>
|
||||
</ThemeUserPreferences>
|
||||
</user_preferences>
|
||||
<console>
|
||||
<ThemeConsole line_output="#212226"
|
||||
line_input="#ffffff"
|
||||
line_info="#608cd6"
|
||||
line_error="#dc221c"
|
||||
cursor="#f2eee3"
|
||||
select="#ffffff30">
|
||||
<space>
|
||||
<ThemeSpaceGeneric back="#83817b"
|
||||
title="#5d5d5d"
|
||||
text="#ffffff"
|
||||
text_hi="#ffffff"
|
||||
header="#83817b"
|
||||
header_text="#ffffff"
|
||||
header_text_hi="#ffffff"
|
||||
button="#83817b7f"
|
||||
button_title="#ffffff"
|
||||
button_text="#ffffff"
|
||||
button_text_hi="#ffffff"
|
||||
tab_active="#676c75"
|
||||
tab_inactive="#83817b"
|
||||
tab_back="#83817bff"
|
||||
tab_outline="#000000">
|
||||
<panelcolors>
|
||||
<ThemePanelColors header="#00000002"
|
||||
back="#7272727f"
|
||||
show_header="FALSE"
|
||||
show_back="FALSE">
|
||||
</ThemePanelColors>
|
||||
</panelcolors>
|
||||
</ThemeSpaceGeneric>
|
||||
</space>
|
||||
</ThemeConsole>
|
||||
</console>
|
||||
<clip_editor>
|
||||
<ThemeClipEditor gp_vertex="#000000"
|
||||
gp_vertex_select="#000000"
|
||||
gp_vertex_size="1"
|
||||
marker_outline="#0094af"
|
||||
marker="#7f7f00"
|
||||
active_marker="#ffffff"
|
||||
selected_marker="#ffff00"
|
||||
disabled_marker="#7f0000"
|
||||
locked_marker="#7f7f7f"
|
||||
path_before="#ff0000"
|
||||
path_after="#0000ff"
|
||||
frame_current="#1b501b"
|
||||
strips="#0c0a0a"
|
||||
strips_selected="#ff8c00"
|
||||
handle_free="#000000"
|
||||
handle_auto="#909000"
|
||||
handle_align="#803060"
|
||||
handle_sel_free="#000000"
|
||||
handle_sel_auto="#f0ff40"
|
||||
handle_sel_align="#f090a0"
|
||||
handle_auto_clamped="#000000"
|
||||
handle_sel_auto_clamped="#000000"
|
||||
handle_vertex="#e2e2e2"
|
||||
handle_vertex_select="#ffff00"
|
||||
handle_vertex_size="4">
|
||||
<space>
|
||||
<ThemeSpaceGeneric back="#1b1f28"
|
||||
title="#5d5d5d"
|
||||
text="#ffffff"
|
||||
text_hi="#ffffff"
|
||||
header="#83817b"
|
||||
header_text="#ffffff"
|
||||
header_text_hi="#ffffff"
|
||||
button="#1b1f287f"
|
||||
button_title="#ffffff"
|
||||
button_text="#ffffff"
|
||||
button_text_hi="#ffffff"
|
||||
tab_active="#676c75"
|
||||
tab_inactive="#83817b"
|
||||
tab_back="#83817bff"
|
||||
tab_outline="#000000">
|
||||
<panelcolors>
|
||||
<ThemePanelColors header="#00000002"
|
||||
back="#7272727f"
|
||||
show_header="FALSE"
|
||||
show_back="FALSE">
|
||||
</ThemePanelColors>
|
||||
</panelcolors>
|
||||
</ThemeSpaceGeneric>
|
||||
</space>
|
||||
<space_list>
|
||||
<ThemeSpaceListGeneric list="#666666"
|
||||
list_title="#000000"
|
||||
list_text="#000000"
|
||||
list_text_hi="#ffffff">
|
||||
</ThemeSpaceListGeneric>
|
||||
</space_list>
|
||||
</ThemeClipEditor>
|
||||
</clip_editor>
|
||||
<bone_color_sets>
|
||||
<ThemeBoneColorSet normal="#9a0000"
|
||||
select="#bd1111"
|
||||
active="#f70a0a"
|
||||
show_colored_constraints="FALSE">
|
||||
</ThemeBoneColorSet>
|
||||
<ThemeBoneColorSet normal="#f74018"
|
||||
select="#f66913"
|
||||
active="#fa9900"
|
||||
show_colored_constraints="FALSE">
|
||||
</ThemeBoneColorSet>
|
||||
<ThemeBoneColorSet normal="#1e9109"
|
||||
select="#59b70b"
|
||||
active="#83ef1d"
|
||||
show_colored_constraints="FALSE">
|
||||
</ThemeBoneColorSet>
|
||||
<ThemeBoneColorSet normal="#0a3694"
|
||||
select="#3667df"
|
||||
active="#5ec1ef"
|
||||
show_colored_constraints="FALSE">
|
||||
</ThemeBoneColorSet>
|
||||
<ThemeBoneColorSet normal="#a9294e"
|
||||
select="#c1416a"
|
||||
active="#f05d91"
|
||||
show_colored_constraints="FALSE">
|
||||
</ThemeBoneColorSet>
|
||||
<ThemeBoneColorSet normal="#430c78"
|
||||
select="#543aa3"
|
||||
active="#8764d5"
|
||||
show_colored_constraints="FALSE">
|
||||
</ThemeBoneColorSet>
|
||||
<ThemeBoneColorSet normal="#24785a"
|
||||
select="#3c9579"
|
||||
active="#6fb6ab"
|
||||
show_colored_constraints="FALSE">
|
||||
</ThemeBoneColorSet>
|
||||
<ThemeBoneColorSet normal="#4b707c"
|
||||
select="#6a8691"
|
||||
active="#9bc2cd"
|
||||
show_colored_constraints="FALSE">
|
||||
</ThemeBoneColorSet>
|
||||
<ThemeBoneColorSet normal="#f4c90c"
|
||||
select="#eec236"
|
||||
active="#f3ff00"
|
||||
show_colored_constraints="FALSE">
|
||||
</ThemeBoneColorSet>
|
||||
<ThemeBoneColorSet normal="#1e2024"
|
||||
select="#484c56"
|
||||
active="#ffffff"
|
||||
show_colored_constraints="FALSE">
|
||||
</ThemeBoneColorSet>
|
||||
<ThemeBoneColorSet normal="#6f2f6a"
|
||||
select="#9845be"
|
||||
active="#d330d6"
|
||||
show_colored_constraints="FALSE">
|
||||
</ThemeBoneColorSet>
|
||||
<ThemeBoneColorSet normal="#6c8e22"
|
||||
select="#7fb022"
|
||||
active="#bbef5b"
|
||||
show_colored_constraints="FALSE">
|
||||
</ThemeBoneColorSet>
|
||||
<ThemeBoneColorSet normal="#8d8d8d"
|
||||
select="#b0b0b0"
|
||||
active="#dedede"
|
||||
show_colored_constraints="FALSE">
|
||||
</ThemeBoneColorSet>
|
||||
<ThemeBoneColorSet normal="#834326"
|
||||
select="#8b5811"
|
||||
active="#bd6a11"
|
||||
show_colored_constraints="FALSE">
|
||||
</ThemeBoneColorSet>
|
||||
<ThemeBoneColorSet normal="#08310e"
|
||||
select="#1c430b"
|
||||
active="#34622b"
|
||||
show_colored_constraints="FALSE">
|
||||
</ThemeBoneColorSet>
|
||||
<ThemeBoneColorSet normal="#000000"
|
||||
select="#000000"
|
||||
active="#000000"
|
||||
show_colored_constraints="FALSE">
|
||||
</ThemeBoneColorSet>
|
||||
<ThemeBoneColorSet normal="#000000"
|
||||
select="#000000"
|
||||
active="#000000"
|
||||
show_colored_constraints="FALSE">
|
||||
</ThemeBoneColorSet>
|
||||
<ThemeBoneColorSet normal="#000000"
|
||||
select="#000000"
|
||||
active="#000000"
|
||||
show_colored_constraints="FALSE">
|
||||
</ThemeBoneColorSet>
|
||||
<ThemeBoneColorSet normal="#000000"
|
||||
select="#000000"
|
||||
active="#000000"
|
||||
show_colored_constraints="FALSE">
|
||||
</ThemeBoneColorSet>
|
||||
<ThemeBoneColorSet normal="#000000"
|
||||
select="#000000"
|
||||
active="#000000"
|
||||
show_colored_constraints="FALSE">
|
||||
</ThemeBoneColorSet>
|
||||
</bone_color_sets>
|
||||
</Theme>
|
||||
<ThemeStyle>
|
||||
<panel_title>
|
||||
<ThemeFontStyle points="12"
|
||||
font_kerning_style="FITTED"
|
||||
shadow="1"
|
||||
shadow_offset_x="0"
|
||||
shadow_offset_y="-1"
|
||||
shadow_alpha="0.15"
|
||||
shadow_value="1">
|
||||
</ThemeFontStyle>
|
||||
</panel_title>
|
||||
<widget_label>
|
||||
<ThemeFontStyle points="11"
|
||||
font_kerning_style="FITTED"
|
||||
shadow="3"
|
||||
shadow_offset_x="0"
|
||||
shadow_offset_y="-1"
|
||||
shadow_alpha="0.15"
|
||||
shadow_value="1">
|
||||
</ThemeFontStyle>
|
||||
</widget_label>
|
||||
<widget>
|
||||
<ThemeFontStyle points="11"
|
||||
font_kerning_style="FITTED"
|
||||
shadow="0"
|
||||
shadow_offset_x="0"
|
||||
shadow_offset_y="0"
|
||||
shadow_alpha="0.25"
|
||||
shadow_value="0">
|
||||
</ThemeFontStyle>
|
||||
</widget>
|
||||
</ThemeStyle>
|
||||
</bpy>
|
||||
1177
release/scripts/presets/interface_theme/true_blue_menu.xml
Normal file
1177
release/scripts/presets/interface_theme/true_blue_menu.xml
Normal file
@@ -0,0 +1,1177 @@
|
||||
<bpy>
|
||||
<Theme>
|
||||
<user_interface>
|
||||
<ThemeUserInterface menu_shadow_fac="0.5"
|
||||
menu_shadow_width="12"
|
||||
icon_file=""
|
||||
icon_alpha="1"
|
||||
widget_emboss="#ffffff05"
|
||||
axis_x="#801a1a"
|
||||
axis_y="#1a801a"
|
||||
axis_z="#1a1a80">
|
||||
<wcol_regular>
|
||||
<ThemeWidgetColors outline="#303030"
|
||||
inner="#3d4b59b5"
|
||||
inner_sel="#4179b8ff"
|
||||
item="#1e252cb5"
|
||||
text="#b8b8b8"
|
||||
text_sel="#ffffff"
|
||||
show_shaded="TRUE"
|
||||
shadetop="10"
|
||||
shadedown="-30">
|
||||
</ThemeWidgetColors>
|
||||
</wcol_regular>
|
||||
<wcol_tool>
|
||||
<ThemeWidgetColors outline="#303030"
|
||||
inner="#2d4463b5"
|
||||
inner_sel="#4179b8ff"
|
||||
item="#1e252cb5"
|
||||
text="#b8b8b8"
|
||||
text_sel="#ffffff"
|
||||
show_shaded="TRUE"
|
||||
shadetop="10"
|
||||
shadedown="-30">
|
||||
</ThemeWidgetColors>
|
||||
</wcol_tool>
|
||||
<wcol_radio>
|
||||
<ThemeWidgetColors outline="#303030"
|
||||
inner="#3d4b59b5"
|
||||
inner_sel="#4179b8ff"
|
||||
item="#1e252cb5"
|
||||
text="#b8b8b8"
|
||||
text_sel="#ffffff"
|
||||
show_shaded="TRUE"
|
||||
shadetop="10"
|
||||
shadedown="-30">
|
||||
</ThemeWidgetColors>
|
||||
</wcol_radio>
|
||||
<wcol_text>
|
||||
<ThemeWidgetColors outline="#303030"
|
||||
inner="#3d4b59b5"
|
||||
inner_sel="#4179b8ff"
|
||||
item="#1e252cb5"
|
||||
text="#b8b8b8"
|
||||
text_sel="#ffffff"
|
||||
show_shaded="TRUE"
|
||||
shadetop="10"
|
||||
shadedown="-30">
|
||||
</ThemeWidgetColors>
|
||||
</wcol_text>
|
||||
<wcol_option>
|
||||
<ThemeWidgetColors outline="#303030"
|
||||
inner="#3d4b59b5"
|
||||
inner_sel="#4179b8ff"
|
||||
item="#ffecd7b5"
|
||||
text="#b8b8b8"
|
||||
text_sel="#ffffff"
|
||||
show_shaded="TRUE"
|
||||
shadetop="10"
|
||||
shadedown="-30">
|
||||
</ThemeWidgetColors>
|
||||
</wcol_option>
|
||||
<wcol_toggle>
|
||||
<ThemeWidgetColors outline="#303030"
|
||||
inner="#3d4b59b5"
|
||||
inner_sel="#4179b8ff"
|
||||
item="#1e252cb5"
|
||||
text="#b8b8b8"
|
||||
text_sel="#ffffff"
|
||||
show_shaded="TRUE"
|
||||
shadetop="10"
|
||||
shadedown="-30">
|
||||
</ThemeWidgetColors>
|
||||
</wcol_toggle>
|
||||
<wcol_num>
|
||||
<ThemeWidgetColors outline="#303030"
|
||||
inner="#3d4b59b5"
|
||||
inner_sel="#4179b8ff"
|
||||
item="#768dabff"
|
||||
text="#b8b8b8"
|
||||
text_sel="#ffffff"
|
||||
show_shaded="TRUE"
|
||||
shadetop="10"
|
||||
shadedown="-30">
|
||||
</ThemeWidgetColors>
|
||||
</wcol_num>
|
||||
<wcol_numslider>
|
||||
<ThemeWidgetColors outline="#303030"
|
||||
inner="#3d4b59b5"
|
||||
inner_sel="#4179b8ff"
|
||||
item="#1e252cb5"
|
||||
text="#b8b8b8"
|
||||
text_sel="#ffffff"
|
||||
show_shaded="TRUE"
|
||||
shadetop="10"
|
||||
shadedown="-30">
|
||||
</ThemeWidgetColors>
|
||||
</wcol_numslider>
|
||||
<wcol_box>
|
||||
<ThemeWidgetColors outline="#303030"
|
||||
inner="#3d4b59b5"
|
||||
inner_sel="#4179b8ff"
|
||||
item="#1e252cb5"
|
||||
text="#b8b8b8"
|
||||
text_sel="#ffffff"
|
||||
show_shaded="TRUE"
|
||||
shadetop="10"
|
||||
shadedown="-30">
|
||||
</ThemeWidgetColors>
|
||||
</wcol_box>
|
||||
<wcol_menu>
|
||||
<ThemeWidgetColors outline="#303030"
|
||||
inner="#1e2e41ff"
|
||||
inner_sel="#4179b8ff"
|
||||
item="#97b5daff"
|
||||
text="#b8b8b8"
|
||||
text_sel="#ffffff"
|
||||
show_shaded="FALSE"
|
||||
shadetop="10"
|
||||
shadedown="-30">
|
||||
</ThemeWidgetColors>
|
||||
</wcol_menu>
|
||||
<wcol_pulldown>
|
||||
<ThemeWidgetColors outline="#303030"
|
||||
inner="#3d4b59ff"
|
||||
inner_sel="#4179b8ff"
|
||||
item="#1e252cff"
|
||||
text="#b8b8b8"
|
||||
text_sel="#ffffff"
|
||||
show_shaded="TRUE"
|
||||
shadetop="10"
|
||||
shadedown="-30">
|
||||
</ThemeWidgetColors>
|
||||
</wcol_pulldown>
|
||||
<wcol_menu_back>
|
||||
<ThemeWidgetColors outline="#303030"
|
||||
inner="#3d4b59e6"
|
||||
inner_sel="#4179b8ff"
|
||||
item="#1e252cff"
|
||||
text="#b8b8b8"
|
||||
text_sel="#ffffff"
|
||||
show_shaded="FALSE"
|
||||
shadetop="10"
|
||||
shadedown="-30">
|
||||
</ThemeWidgetColors>
|
||||
</wcol_menu_back>
|
||||
<wcol_pie_menu>
|
||||
<ThemeWidgetColors outline="#000000"
|
||||
inner="#3d4b59e6"
|
||||
inner_sel="#29476dff"
|
||||
item="#4179b8ad"
|
||||
text="#b8b8b8"
|
||||
text_sel="#ffffff"
|
||||
show_shaded="TRUE"
|
||||
shadetop="10"
|
||||
shadedown="-30">
|
||||
</ThemeWidgetColors>
|
||||
</wcol_pie_menu>
|
||||
<wcol_tooltip>
|
||||
<ThemeWidgetColors outline="#303030"
|
||||
inner="#3d4b59e6"
|
||||
inner_sel="#4179b8ff"
|
||||
item="#1e2528e6"
|
||||
text="#dadada"
|
||||
text_sel="#ffffff"
|
||||
show_shaded="TRUE"
|
||||
shadetop="10"
|
||||
shadedown="-30">
|
||||
</ThemeWidgetColors>
|
||||
</wcol_tooltip>
|
||||
<wcol_menu_item>
|
||||
<ThemeWidgetColors outline="#303030"
|
||||
inner="#3d4b59b5"
|
||||
inner_sel="#4179b8ff"
|
||||
item="#1e252cb5"
|
||||
text="#b8b8b8"
|
||||
text_sel="#ffffff"
|
||||
show_shaded="FALSE"
|
||||
shadetop="10"
|
||||
shadedown="-30">
|
||||
</ThemeWidgetColors>
|
||||
</wcol_menu_item>
|
||||
<wcol_scroll>
|
||||
<ThemeWidgetColors outline="#2d2d2d"
|
||||
inner="#376fa91a"
|
||||
inner_sel="#85b9ef77"
|
||||
item="#264b7079"
|
||||
text="#cccccc"
|
||||
text_sel="#ffffff"
|
||||
show_shaded="TRUE"
|
||||
shadetop="10"
|
||||
shadedown="-10">
|
||||
</ThemeWidgetColors>
|
||||
</wcol_scroll>
|
||||
<wcol_progress>
|
||||
<ThemeWidgetColors outline="#000000"
|
||||
inner="#bebebeff"
|
||||
inner_sel="#646464b4"
|
||||
item="#444444ff"
|
||||
text="#d3d3d3"
|
||||
text_sel="#ffffff"
|
||||
show_shaded="TRUE"
|
||||
shadetop="10"
|
||||
shadedown="-10">
|
||||
</ThemeWidgetColors>
|
||||
</wcol_progress>
|
||||
<wcol_list_item>
|
||||
<ThemeWidgetColors outline="#000000"
|
||||
inner="#3e79b600"
|
||||
inner_sel="#1d4f81b7"
|
||||
item="#1e252cb5"
|
||||
text="#cecece"
|
||||
text_sel="#ffffff"
|
||||
show_shaded="TRUE"
|
||||
shadetop="-35"
|
||||
shadedown="20">
|
||||
</ThemeWidgetColors>
|
||||
</wcol_list_item>
|
||||
<wcol_state>
|
||||
<ThemeWidgetStateColors inner_anim="#339900"
|
||||
inner_anim_sel="#2b8000"
|
||||
inner_key="#999300"
|
||||
inner_key_sel="#666200"
|
||||
inner_driven="#b400ff"
|
||||
inner_driven_sel="#9900e6"
|
||||
blend="0.5">
|
||||
</ThemeWidgetStateColors>
|
||||
</wcol_state>
|
||||
</ThemeUserInterface>
|
||||
</user_interface>
|
||||
<view_3d>
|
||||
<ThemeView3D grid="#000000"
|
||||
clipping_border_3d="#313131ff"
|
||||
wire="#5c8ca3"
|
||||
wire_edit="#8a8a8a"
|
||||
gp_vertex="#000000"
|
||||
gp_vertex_select="#ff8500"
|
||||
gp_vertex_size="3"
|
||||
text_grease_pencil="#b5e61d"
|
||||
object_selected="#0ea9ff"
|
||||
object_active="#80b5ff"
|
||||
object_grouped="#083008"
|
||||
object_grouped_active="#55bb55"
|
||||
text_keyframe="#ddd700"
|
||||
camera="#000000"
|
||||
empty="#a78721"
|
||||
lamp="#d6df1628"
|
||||
speaker="#a83f2d"
|
||||
vertex="#657780"
|
||||
vertex_select="#00cccb"
|
||||
vertex_size="3"
|
||||
vertex_bevel="#00a5ff"
|
||||
vertex_unreferenced="#9b9b9b"
|
||||
edge_select="#00bebb"
|
||||
edge_seam="#db2512"
|
||||
edge_sharp="#00ffff"
|
||||
edge_crease="#cc0099"
|
||||
edge_bevel="#00a5ff"
|
||||
edge_facesel="#4b4b4b"
|
||||
freestyle_edge_mark="#7fff7f"
|
||||
face="#58585836"
|
||||
face_select="#3f9ca473"
|
||||
face_dot="#adbeb6"
|
||||
facedot_size="3"
|
||||
freestyle_face_mark="#7fff7f33"
|
||||
nurb_uline="#909000"
|
||||
nurb_vline="#803060"
|
||||
nurb_sel_uline="#f0ff40"
|
||||
nurb_sel_vline="#f090a0"
|
||||
act_spline="#db2512"
|
||||
handle_free="#000000"
|
||||
handle_auto="#909000"
|
||||
handle_vect="#409030"
|
||||
handle_sel_vect="#40c030"
|
||||
handle_align="#803060"
|
||||
handle_sel_free="#000000"
|
||||
handle_sel_auto="#f0ff40"
|
||||
handle_sel_align="#f090a0"
|
||||
lastsel_point="#ffffff"
|
||||
extra_edge_len="#00b7c2"
|
||||
extra_edge_angle="#acacac"
|
||||
extra_face_angle="#53b9ff"
|
||||
extra_face_area="#005300"
|
||||
editmesh_active="#00ffcda7"
|
||||
normal="#1fbebe"
|
||||
vertex_normal="#2361dd"
|
||||
split_normal="#dd23dd"
|
||||
bone_pose="#50c8ff"
|
||||
bone_pose_active="#8cffff"
|
||||
bone_solid="#899980"
|
||||
bundle_solid="#c8c8c8"
|
||||
camera_path="#000000"
|
||||
skin_root="#000000"
|
||||
view_overlay="#000000"
|
||||
transform="#ffffff"
|
||||
frame_current="#60c040"
|
||||
paint_curve_handle="#7fff7f7f"
|
||||
paint_curve_pivot="#ff7f7f7f"
|
||||
outline_width="1">
|
||||
<space>
|
||||
<ThemeSpaceGradient title="#000000"
|
||||
text="#b8b8b8"
|
||||
text_hi="#e9e9e9"
|
||||
header="#1f2a35"
|
||||
header_text="#b9b9b9"
|
||||
header_text_hi="#ffffff"
|
||||
button="#1d232980"
|
||||
button_title="#979797"
|
||||
button_text="#bbbbbb"
|
||||
button_text_hi="#ffffff"
|
||||
tab_active="#223950"
|
||||
tab_inactive="#1d2329"
|
||||
tab_back="#1d2329ff"
|
||||
tab_outline="#36547a">
|
||||
<gradients>
|
||||
<ThemeGradientColors show_grad="TRUE"
|
||||
gradient="#0f0f0f"
|
||||
high_gradient="#42505e">
|
||||
</ThemeGradientColors>
|
||||
</gradients>
|
||||
<panelcolors>
|
||||
<ThemePanelColors header="#00000000"
|
||||
back="#282828b0"
|
||||
show_header="FALSE"
|
||||
show_back="FALSE">
|
||||
</ThemePanelColors>
|
||||
</panelcolors>
|
||||
</ThemeSpaceGradient>
|
||||
</space>
|
||||
</ThemeView3D>
|
||||
</view_3d>
|
||||
<graph_editor>
|
||||
<ThemeGraphEditor grid="#5a7b8a"
|
||||
frame_current="#60c040"
|
||||
window_sliders="#969696"
|
||||
channels_region="#8a8a8a"
|
||||
dopesheet_channel="#52606e"
|
||||
dopesheet_subchannel="#545d66"
|
||||
channel_group="#4f6549"
|
||||
active_channels_group="#87b17d"
|
||||
vertex="#000000"
|
||||
vertex_select="#ff8500"
|
||||
vertex_size="3"
|
||||
vertex_bevel="#000000"
|
||||
vertex_unreferenced="#000000"
|
||||
handle_free="#000000"
|
||||
handle_auto="#909000"
|
||||
handle_vect="#409030"
|
||||
handle_sel_vect="#40c030"
|
||||
handle_align="#803060"
|
||||
handle_sel_free="#000000"
|
||||
handle_sel_auto="#f0ff40"
|
||||
handle_sel_align="#f090a0"
|
||||
handle_auto_clamped="#994030"
|
||||
handle_sel_auto_clamped="#f0af90"
|
||||
lastsel_point="#ffffff"
|
||||
handle_vertex="#000000"
|
||||
handle_vertex_select="#ff8500"
|
||||
handle_vertex_size="4">
|
||||
<space>
|
||||
<ThemeSpaceGeneric back="#1d2329"
|
||||
title="#8b8b8b"
|
||||
text="#ffffff"
|
||||
text_hi="#ffffff"
|
||||
header="#1f2a35"
|
||||
header_text="#000000"
|
||||
header_text_hi="#ffffff"
|
||||
button="#1d2329ff"
|
||||
button_title="#b8b8b8"
|
||||
button_text="#8b8b8b"
|
||||
button_text_hi="#ffffff"
|
||||
tab_active="#6c717f"
|
||||
tab_inactive="#565b65"
|
||||
tab_back="#555961ff"
|
||||
tab_outline="#2d2d32">
|
||||
<panelcolors>
|
||||
<ThemePanelColors header="#00000019"
|
||||
back="#72727280"
|
||||
show_header="FALSE"
|
||||
show_back="FALSE">
|
||||
</ThemePanelColors>
|
||||
</panelcolors>
|
||||
</ThemeSpaceGeneric>
|
||||
</space>
|
||||
<space_list>
|
||||
<ThemeSpaceListGeneric list="#1d2329"
|
||||
list_title="#8b8b8b"
|
||||
list_text="#cecece"
|
||||
list_text_hi="#ffffff">
|
||||
</ThemeSpaceListGeneric>
|
||||
</space_list>
|
||||
</ThemeGraphEditor>
|
||||
</graph_editor>
|
||||
<file_browser>
|
||||
<ThemeFileBrowser selected_file="#755129">
|
||||
<space>
|
||||
<ThemeSpaceGeneric back="#1d2329"
|
||||
title="#8b8b8b"
|
||||
text="#cacaca"
|
||||
text_hi="#0f0f0f"
|
||||
header="#202b36"
|
||||
header_text="#8b8b8b"
|
||||
header_text_hi="#ffffff"
|
||||
button="#1d2329ff"
|
||||
button_title="#000000"
|
||||
button_text="#000000"
|
||||
button_text_hi="#ffffff"
|
||||
tab_active="#6c717f"
|
||||
tab_inactive="#565b65"
|
||||
tab_back="#4b5058ff"
|
||||
tab_outline="#2d2d32">
|
||||
<panelcolors>
|
||||
<ThemePanelColors header="#00000019"
|
||||
back="#47556180"
|
||||
show_header="FALSE"
|
||||
show_back="FALSE">
|
||||
</ThemePanelColors>
|
||||
</panelcolors>
|
||||
</ThemeSpaceGeneric>
|
||||
</space>
|
||||
</ThemeFileBrowser>
|
||||
</file_browser>
|
||||
<nla_editor>
|
||||
<ThemeNLAEditor grid="#5e5e5e"
|
||||
view_sliders="#969696"
|
||||
active_action="#cc701a66"
|
||||
active_action_unset="#9987614d"
|
||||
strips="#0c0a0a"
|
||||
strips_selected="#ff8c00"
|
||||
transition_strips="#1c2630"
|
||||
transition_strips_selected="#2e75db"
|
||||
meta_strips="#332642"
|
||||
meta_strips_selected="#692196"
|
||||
sound_strips="#2b3d3d"
|
||||
sound_strips_selected="#1f7a7a"
|
||||
tweak="#4df31a"
|
||||
tweak_duplicate="#d90000"
|
||||
keyframe_border="#000000ff"
|
||||
keyframe_border_selected="#000000ff"
|
||||
frame_current="#60c040">
|
||||
<space>
|
||||
<ThemeSpaceGeneric back="#1d2329"
|
||||
title="#8b8b8b"
|
||||
text="#ffffff"
|
||||
text_hi="#ffffff"
|
||||
header="#1f2a35"
|
||||
header_text="#000000"
|
||||
header_text_hi="#ffffff"
|
||||
button="#1d2329ff"
|
||||
button_title="#cecece"
|
||||
button_text="#a7a7a7"
|
||||
button_text_hi="#ffffff"
|
||||
tab_active="#6c717f"
|
||||
tab_inactive="#565b65"
|
||||
tab_back="#4b5058ff"
|
||||
tab_outline="#2d2d32">
|
||||
<panelcolors>
|
||||
<ThemePanelColors header="#00000005"
|
||||
back="#1d232980"
|
||||
show_header="FALSE"
|
||||
show_back="FALSE">
|
||||
</ThemePanelColors>
|
||||
</panelcolors>
|
||||
</ThemeSpaceGeneric>
|
||||
</space>
|
||||
<space_list>
|
||||
<ThemeSpaceListGeneric list="#1d2329"
|
||||
list_title="#1f2a35"
|
||||
list_text="#cccccc"
|
||||
list_text_hi="#ffffff">
|
||||
</ThemeSpaceListGeneric>
|
||||
</space_list>
|
||||
</ThemeNLAEditor>
|
||||
</nla_editor>
|
||||
<dopesheet_editor>
|
||||
<ThemeDopeSheet grid="#585858"
|
||||
frame_current="#60c040"
|
||||
value_sliders="#000000"
|
||||
view_sliders="#969696"
|
||||
dopesheet_channel="#52606e"
|
||||
dopesheet_subchannel="#7c8996"
|
||||
channels="#707070"
|
||||
channels_selected="#60c040"
|
||||
channel_group="#4f6549"
|
||||
active_channels_group="#87b17d"
|
||||
long_key="#0c0a0a"
|
||||
long_key_selected="#ff8c00"
|
||||
keyframe="#e8e8e8"
|
||||
keyframe_selected="#ffbe32"
|
||||
keyframe_extreme="#e8b3cc"
|
||||
keyframe_extreme_selected="#f28080"
|
||||
keyframe_breakdown="#b3dbe8"
|
||||
keyframe_breakdown_selected="#54bfed"
|
||||
keyframe_jitter="#94e575"
|
||||
keyframe_jitter_selected="#61c042"
|
||||
keyframe_border="#000000ff"
|
||||
keyframe_border_selected="#000000ff"
|
||||
keyframe_scale_factor="1"
|
||||
summary="#3d566887">
|
||||
<space>
|
||||
<ThemeSpaceGeneric back="#1d2329"
|
||||
title="#000000"
|
||||
text="#ffffff"
|
||||
text_hi="#ffffff"
|
||||
header="#202b36"
|
||||
header_text="#000000"
|
||||
header_text_hi="#ffffff"
|
||||
button="#aaaaaaff"
|
||||
button_title="#000000"
|
||||
button_text="#000000"
|
||||
button_text_hi="#ffffff"
|
||||
tab_active="#6c717f"
|
||||
tab_inactive="#565b65"
|
||||
tab_back="#4b5058ff"
|
||||
tab_outline="#2d2d32">
|
||||
<panelcolors>
|
||||
<ThemePanelColors header="#00000019"
|
||||
back="#72727280"
|
||||
show_header="FALSE"
|
||||
show_back="FALSE">
|
||||
</ThemePanelColors>
|
||||
</panelcolors>
|
||||
</ThemeSpaceGeneric>
|
||||
</space>
|
||||
<space_list>
|
||||
<ThemeSpaceListGeneric list="#1d2329"
|
||||
list_title="#2b3742"
|
||||
list_text="#c5c5c5"
|
||||
list_text_hi="#ffffff">
|
||||
</ThemeSpaceListGeneric>
|
||||
</space_list>
|
||||
</ThemeDopeSheet>
|
||||
</dopesheet_editor>
|
||||
<image_editor>
|
||||
<ThemeImageEditor gp_vertex="#000000"
|
||||
gp_vertex_select="#ff8500"
|
||||
gp_vertex_size="3"
|
||||
vertex="#32adec"
|
||||
vertex_select="#be6925"
|
||||
vertex_size="3"
|
||||
vertex_bevel="#000000"
|
||||
vertex_unreferenced="#000000"
|
||||
face="#a47c5b0a"
|
||||
face_select="#a47c5b3c"
|
||||
face_dot="#ffffff"
|
||||
facedot_size="3"
|
||||
freestyle_face_mark="#00000000"
|
||||
editmesh_active="#ffffff80"
|
||||
wire_edit="#c0c0c0"
|
||||
edge_select="#ff8500"
|
||||
scope_back="#303030ff"
|
||||
preview_stitch_face="#1242b026"
|
||||
preview_stitch_edge="#ff8500b2"
|
||||
preview_stitch_vert="#ff85007f"
|
||||
preview_stitch_stitchable="#00ff00ff"
|
||||
preview_stitch_unstitchable="#ff0000ff"
|
||||
preview_stitch_active="#e1d2c323"
|
||||
uv_shadow="#707070ff"
|
||||
uv_others="#606060ff"
|
||||
frame_current="#60c040"
|
||||
metadatabg="#000000"
|
||||
metadatatext="#ffffff"
|
||||
handle_free="#000000"
|
||||
handle_auto="#909000"
|
||||
handle_align="#803060"
|
||||
handle_sel_free="#000000"
|
||||
handle_sel_auto="#f0ff40"
|
||||
handle_sel_align="#f090a0"
|
||||
handle_auto_clamped="#000000"
|
||||
handle_sel_auto_clamped="#000000"
|
||||
handle_vertex="#000000"
|
||||
handle_vertex_select="#ffff00"
|
||||
handle_vertex_size="5"
|
||||
paint_curve_handle="#7fff7f7f"
|
||||
paint_curve_pivot="#ff7f7f7f">
|
||||
<space>
|
||||
<ThemeSpaceGeneric back="#1d2329"
|
||||
title="#7f7f7f"
|
||||
text="#999999"
|
||||
text_hi="#ffffff"
|
||||
header="#202b36"
|
||||
header_text="#000000"
|
||||
header_text_hi="#ffffff"
|
||||
button="#1d2329cc"
|
||||
button_title="#8b8b8b"
|
||||
button_text="#cccccc"
|
||||
button_text_hi="#ffffff"
|
||||
tab_active="#223950"
|
||||
tab_inactive="#1d2329"
|
||||
tab_back="#1d2329ff"
|
||||
tab_outline="#273e55">
|
||||
<panelcolors>
|
||||
<ThemePanelColors header="#00000019"
|
||||
back="#72727280"
|
||||
show_header="FALSE"
|
||||
show_back="FALSE">
|
||||
</ThemePanelColors>
|
||||
</panelcolors>
|
||||
</ThemeSpaceGeneric>
|
||||
</space>
|
||||
</ThemeImageEditor>
|
||||
</image_editor>
|
||||
<sequence_editor>
|
||||
<ThemeSequenceEditor gp_vertex="#000000"
|
||||
gp_vertex_select="#ff8500"
|
||||
gp_vertex_size="3"
|
||||
grid="#636363"
|
||||
window_sliders="#a0a0a0"
|
||||
movie_strip="#516987"
|
||||
movieclip_strip="#20208f"
|
||||
image_strip="#6d5881"
|
||||
scene_strip="#4e983e"
|
||||
audio_strip="#2e8f8f"
|
||||
effect_strip="#a9547c"
|
||||
transition_strip="#a25f6f"
|
||||
meta_strip="#6d9183"
|
||||
text_strip="#a29700"
|
||||
frame_current="#60c040"
|
||||
keyframe="#ff8500"
|
||||
draw_action="#50c8ff"
|
||||
preview_back="#000000"
|
||||
metadatabg="#000000"
|
||||
metadatatext="#ffffff">
|
||||
<space>
|
||||
<ThemeSpaceGeneric back="#1d2329"
|
||||
title="#8b8b8b"
|
||||
text="#ffffff"
|
||||
text_hi="#ffffff"
|
||||
header="#202b36"
|
||||
header_text="#000000"
|
||||
header_text_hi="#ffffff"
|
||||
button="#1d2329cc"
|
||||
button_title="#afafaf"
|
||||
button_text="#b3b3b3"
|
||||
button_text_hi="#ffffff"
|
||||
tab_active="#6c717f"
|
||||
tab_inactive="#565b65"
|
||||
tab_back="#4b5058ff"
|
||||
tab_outline="#2d2d32">
|
||||
<panelcolors>
|
||||
<ThemePanelColors header="#00000019"
|
||||
back="#72727280"
|
||||
show_header="FALSE"
|
||||
show_back="FALSE">
|
||||
</ThemePanelColors>
|
||||
</panelcolors>
|
||||
</ThemeSpaceGeneric>
|
||||
</space>
|
||||
</ThemeSequenceEditor>
|
||||
</sequence_editor>
|
||||
<properties>
|
||||
<ThemeProperties>
|
||||
<space>
|
||||
<ThemeSpaceGeneric back="#1d2329"
|
||||
title="#979797"
|
||||
text="#b8b8b8"
|
||||
text_hi="#ffffff"
|
||||
header="#202b36"
|
||||
header_text="#000000"
|
||||
header_text_hi="#ffffff"
|
||||
button="#1d2329ff"
|
||||
button_title="#b8b8b8"
|
||||
button_text="#b8b8b8"
|
||||
button_text_hi="#ffffff"
|
||||
tab_active="#464646"
|
||||
tab_inactive="#393939"
|
||||
tab_back="#404040ff"
|
||||
tab_outline="#323232">
|
||||
<panelcolors>
|
||||
<ThemePanelColors header="#0000002a"
|
||||
back="#35353580"
|
||||
show_header="FALSE"
|
||||
show_back="FALSE">
|
||||
</ThemePanelColors>
|
||||
</panelcolors>
|
||||
</ThemeSpaceGeneric>
|
||||
</space>
|
||||
</ThemeProperties>
|
||||
</properties>
|
||||
<text_editor>
|
||||
<ThemeTextEditor line_numbers_background="#2e2e2e"
|
||||
selected_text="#4e4e8f"
|
||||
cursor="#8b8bff"
|
||||
syntax_builtin="#ed4800"
|
||||
syntax_symbols="#ff8f00"
|
||||
syntax_special="#c080d0"
|
||||
syntax_preprocessor="#32008c"
|
||||
syntax_reserved="#8c3c00"
|
||||
syntax_comment="#cd8b00"
|
||||
syntax_string="#ffcd8b"
|
||||
syntax_numbers="#f0ad6d">
|
||||
<space>
|
||||
<ThemeSpaceGeneric back="#1d2329"
|
||||
title="#8b8b8b"
|
||||
text="#cfbfad"
|
||||
text_hi="#ffffff"
|
||||
header="#202b36"
|
||||
header_text="#a5a5a5"
|
||||
header_text_hi="#ffffff"
|
||||
button="#3b3b3bff"
|
||||
button_title="#8b8b8b"
|
||||
button_text="#8b8b8b"
|
||||
button_text_hi="#ffffff"
|
||||
tab_active="#6c717f"
|
||||
tab_inactive="#565b65"
|
||||
tab_back="#4b5058ff"
|
||||
tab_outline="#2d2d32">
|
||||
<panelcolors>
|
||||
<ThemePanelColors header="#00000019"
|
||||
back="#72727280"
|
||||
show_header="FALSE"
|
||||
show_back="FALSE">
|
||||
</ThemePanelColors>
|
||||
</panelcolors>
|
||||
</ThemeSpaceGeneric>
|
||||
</space>
|
||||
</ThemeTextEditor>
|
||||
</text_editor>
|
||||
<timeline>
|
||||
<ThemeTimeline grid="#5a7b8a"
|
||||
frame_current="#338aff"
|
||||
time_keyframe="#ddd700"
|
||||
time_grease_pencil="#b5e61d">
|
||||
<space>
|
||||
<ThemeSpaceGeneric back="#1d2329"
|
||||
title="#000000"
|
||||
text="#b8b8b8"
|
||||
text_hi="#ffffff"
|
||||
header="#202b36"
|
||||
header_text="#000000"
|
||||
header_text_hi="#ffffff"
|
||||
button="#727272ff"
|
||||
button_title="#000000"
|
||||
button_text="#000000"
|
||||
button_text_hi="#ffffff"
|
||||
tab_active="#464646"
|
||||
tab_inactive="#393939"
|
||||
tab_back="#000000ff"
|
||||
tab_outline="#323232">
|
||||
<panelcolors>
|
||||
<ThemePanelColors header="#00000019"
|
||||
back="#72727280"
|
||||
show_header="FALSE"
|
||||
show_back="FALSE">
|
||||
</ThemePanelColors>
|
||||
</panelcolors>
|
||||
</ThemeSpaceGeneric>
|
||||
</space>
|
||||
</ThemeTimeline>
|
||||
</timeline>
|
||||
<node_editor>
|
||||
<ThemeNodeEditor gp_vertex="#000000"
|
||||
gp_vertex_select="#ff8500"
|
||||
gp_vertex_size="3"
|
||||
node_selected="#6797c5"
|
||||
node_active="#1f76b2"
|
||||
wire="#ffffff"
|
||||
wire_inner="#737373"
|
||||
wire_select="#ffffff"
|
||||
selected_text="#38427f"
|
||||
node_backdrop="#253d54a0"
|
||||
converter_node="#10299b"
|
||||
color_node="#2a85b1"
|
||||
group_node="#1e7524"
|
||||
group_socket_node="#dfca35"
|
||||
frame_node="#9a9b9ba0"
|
||||
matte_node="#000000"
|
||||
distor_node="#000000"
|
||||
noodle_curving="5"
|
||||
input_node="#485cbb"
|
||||
output_node="#084edf"
|
||||
filter_node="#395e83"
|
||||
vector_node="#003153"
|
||||
texture_node="#000d4c"
|
||||
shader_node="#1e4e9e"
|
||||
script_node="#15347e"
|
||||
pattern_node="#436eb8"
|
||||
layout_node="#222858">
|
||||
<space>
|
||||
<ThemeSpaceGeneric back="#1d2329"
|
||||
title="#8b8b8b"
|
||||
text="#dbdbdb"
|
||||
text_hi="#ffffff"
|
||||
header="#202b36"
|
||||
header_text="#000000"
|
||||
header_text_hi="#ffffff"
|
||||
button="#1d232980"
|
||||
button_title="#8b8b8b"
|
||||
button_text="#8b8b8b"
|
||||
button_text_hi="#ffffff"
|
||||
tab_active="#223950"
|
||||
tab_inactive="#1d2329"
|
||||
tab_back="#4b5058ff"
|
||||
tab_outline="#223950">
|
||||
<panelcolors>
|
||||
<ThemePanelColors header="#00000019"
|
||||
back="#72727280"
|
||||
show_header="FALSE"
|
||||
show_back="FALSE">
|
||||
</ThemePanelColors>
|
||||
</panelcolors>
|
||||
</ThemeSpaceGeneric>
|
||||
</space>
|
||||
<space_list>
|
||||
<ThemeSpaceListGeneric list="#a5a5a5"
|
||||
list_title="#000000"
|
||||
list_text="#000000"
|
||||
list_text_hi="#ffffff">
|
||||
</ThemeSpaceListGeneric>
|
||||
</space_list>
|
||||
</ThemeNodeEditor>
|
||||
</node_editor>
|
||||
<logic_editor>
|
||||
<ThemeLogicEditor>
|
||||
<space>
|
||||
<ThemeSpaceGeneric back="#1d2329"
|
||||
title="#000000"
|
||||
text="#000000"
|
||||
text_hi="#ffffff"
|
||||
header="#202b36"
|
||||
header_text="#000000"
|
||||
header_text_hi="#ffffff"
|
||||
button="#1d2329ff"
|
||||
button_title="#8b8b8b"
|
||||
button_text="#8b8b8b"
|
||||
button_text_hi="#ffffff"
|
||||
tab_active="#6c717f"
|
||||
tab_inactive="#565b65"
|
||||
tab_back="#4b5058ff"
|
||||
tab_outline="#2d2d32">
|
||||
<panelcolors>
|
||||
<ThemePanelColors header="#00000019"
|
||||
back="#72727280"
|
||||
show_header="FALSE"
|
||||
show_back="FALSE">
|
||||
</ThemePanelColors>
|
||||
</panelcolors>
|
||||
</ThemeSpaceGeneric>
|
||||
</space>
|
||||
</ThemeLogicEditor>
|
||||
</logic_editor>
|
||||
<outliner>
|
||||
<ThemeOutliner match="#337f33"
|
||||
selected_highlight="#82878c">
|
||||
<space>
|
||||
<ThemeSpaceGeneric back="#1d2329"
|
||||
title="#000000"
|
||||
text="#cacaca"
|
||||
text_hi="#ffffff"
|
||||
header="#1f2a35"
|
||||
header_text="#000000"
|
||||
header_text_hi="#ffffff"
|
||||
button="#727272ff"
|
||||
button_title="#000000"
|
||||
button_text="#000000"
|
||||
button_text_hi="#ffffff"
|
||||
tab_active="#464646"
|
||||
tab_inactive="#393939"
|
||||
tab_back="#000000ff"
|
||||
tab_outline="#323232">
|
||||
<panelcolors>
|
||||
<ThemePanelColors header="#00000019"
|
||||
back="#72727280"
|
||||
show_header="FALSE"
|
||||
show_back="FALSE">
|
||||
</ThemePanelColors>
|
||||
</panelcolors>
|
||||
</ThemeSpaceGeneric>
|
||||
</space>
|
||||
</ThemeOutliner>
|
||||
</outliner>
|
||||
<info>
|
||||
<ThemeInfo info_selected="#6080ff"
|
||||
info_selected_text="#ffffff"
|
||||
info_error="#dc0000"
|
||||
info_error_text="#000000"
|
||||
info_warning="#dc8060"
|
||||
info_warning_text="#000000"
|
||||
info_info="#00aa00"
|
||||
info_info_text="#000000"
|
||||
info_debug="#c4c4c4"
|
||||
info_debug_text="#000000">
|
||||
<space>
|
||||
<ThemeSpaceGeneric back="#1d2329"
|
||||
title="#000000"
|
||||
text="#adadad"
|
||||
text_hi="#000000"
|
||||
header="#202b36"
|
||||
header_text="#c2c2c2"
|
||||
header_text_hi="#000000"
|
||||
button="#3b3b3bff"
|
||||
button_title="#000000"
|
||||
button_text="#000000"
|
||||
button_text_hi="#000000"
|
||||
tab_active="#464646"
|
||||
tab_inactive="#393939"
|
||||
tab_back="#000000ff"
|
||||
tab_outline="#323232">
|
||||
<panelcolors>
|
||||
<ThemePanelColors header="#00000019"
|
||||
back="#72727280"
|
||||
show_header="FALSE"
|
||||
show_back="FALSE">
|
||||
</ThemePanelColors>
|
||||
</panelcolors>
|
||||
</ThemeSpaceGeneric>
|
||||
</space>
|
||||
</ThemeInfo>
|
||||
</info>
|
||||
<user_preferences>
|
||||
<ThemeUserPreferences>
|
||||
<space>
|
||||
<ThemeSpaceGeneric back="#1d2329"
|
||||
title="#000000"
|
||||
text="#b8b8b8"
|
||||
text_hi="#ffffff"
|
||||
header="#1f2a35"
|
||||
header_text="#000000"
|
||||
header_text_hi="#ffffff"
|
||||
button="#727272ff"
|
||||
button_title="#000000"
|
||||
button_text="#000000"
|
||||
button_text_hi="#ffffff"
|
||||
tab_active="#464646"
|
||||
tab_inactive="#393939"
|
||||
tab_back="#000000ff"
|
||||
tab_outline="#323232">
|
||||
<panelcolors>
|
||||
<ThemePanelColors header="#00000019"
|
||||
back="#272727c3"
|
||||
show_header="FALSE"
|
||||
show_back="FALSE">
|
||||
</ThemePanelColors>
|
||||
</panelcolors>
|
||||
</ThemeSpaceGeneric>
|
||||
</space>
|
||||
</ThemeUserPreferences>
|
||||
</user_preferences>
|
||||
<console>
|
||||
<ThemeConsole line_output="#6080ff"
|
||||
line_input="#ffffff"
|
||||
line_info="#00aa00"
|
||||
line_error="#dc6060"
|
||||
cursor="#dc6060"
|
||||
select="#ffffff30">
|
||||
<space>
|
||||
<ThemeSpaceGeneric back="#000000"
|
||||
title="#000000"
|
||||
text="#000000"
|
||||
text_hi="#ffffff"
|
||||
header="#15202b"
|
||||
header_text="#000000"
|
||||
header_text_hi="#ffffff"
|
||||
button="#7272727f"
|
||||
button_title="#000000"
|
||||
button_text="#000000"
|
||||
button_text_hi="#ffffff"
|
||||
tab_active="#727272"
|
||||
tab_inactive="#535353"
|
||||
tab_back="#404040ff"
|
||||
tab_outline="#3c3c3c">
|
||||
<panelcolors>
|
||||
<ThemePanelColors header="#00000002"
|
||||
back="#7272727f"
|
||||
show_header="FALSE"
|
||||
show_back="FALSE">
|
||||
</ThemePanelColors>
|
||||
</panelcolors>
|
||||
</ThemeSpaceGeneric>
|
||||
</space>
|
||||
</ThemeConsole>
|
||||
</console>
|
||||
<clip_editor>
|
||||
<ThemeClipEditor gp_vertex="#000000"
|
||||
gp_vertex_select="#000000"
|
||||
gp_vertex_size="1"
|
||||
marker_outline="#000000"
|
||||
marker="#7f7f00"
|
||||
active_marker="#ffffff"
|
||||
selected_marker="#ffff00"
|
||||
disabled_marker="#7f0000"
|
||||
locked_marker="#7f7f7f"
|
||||
path_before="#ff0000"
|
||||
path_after="#0000ff"
|
||||
frame_current="#60c040"
|
||||
strips="#0c0a0a"
|
||||
strips_selected="#ff8c00"
|
||||
handle_free="#000000"
|
||||
handle_auto="#909000"
|
||||
handle_align="#803060"
|
||||
handle_sel_free="#000000"
|
||||
handle_sel_auto="#f0ff40"
|
||||
handle_sel_align="#f090a0"
|
||||
handle_auto_clamped="#000000"
|
||||
handle_sel_auto_clamped="#000000"
|
||||
handle_vertex="#000000"
|
||||
handle_vertex_select="#ffff00"
|
||||
handle_vertex_size="5">
|
||||
<space>
|
||||
<ThemeSpaceGeneric back="#1d2329"
|
||||
title="#000000"
|
||||
text="#000000"
|
||||
text_hi="#ffffff"
|
||||
header="#202b36"
|
||||
header_text="#000000"
|
||||
header_text_hi="#ffffff"
|
||||
button="#1d2329cc"
|
||||
button_title="#999999"
|
||||
button_text="#939393"
|
||||
button_text_hi="#ffffff"
|
||||
tab_active="#6c717f"
|
||||
tab_inactive="#565b65"
|
||||
tab_back="#4b5058ff"
|
||||
tab_outline="#2d2d32">
|
||||
<panelcolors>
|
||||
<ThemePanelColors header="#00000019"
|
||||
back="#72727280"
|
||||
show_header="FALSE"
|
||||
show_back="FALSE">
|
||||
</ThemePanelColors>
|
||||
</panelcolors>
|
||||
</ThemeSpaceGeneric>
|
||||
</space>
|
||||
<space_list>
|
||||
<ThemeSpaceListGeneric list="#666666"
|
||||
list_title="#000000"
|
||||
list_text="#000000"
|
||||
list_text_hi="#ffffff">
|
||||
</ThemeSpaceListGeneric>
|
||||
</space_list>
|
||||
</ThemeClipEditor>
|
||||
</clip_editor>
|
||||
<bone_color_sets>
|
||||
<ThemeBoneColorSet normal="#9a0000"
|
||||
select="#bd1111"
|
||||
active="#f70a0a"
|
||||
show_colored_constraints="FALSE">
|
||||
</ThemeBoneColorSet>
|
||||
<ThemeBoneColorSet normal="#f74018"
|
||||
select="#f66913"
|
||||
active="#fa9900"
|
||||
show_colored_constraints="FALSE">
|
||||
</ThemeBoneColorSet>
|
||||
<ThemeBoneColorSet normal="#1e9109"
|
||||
select="#59b70b"
|
||||
active="#83ef1d"
|
||||
show_colored_constraints="FALSE">
|
||||
</ThemeBoneColorSet>
|
||||
<ThemeBoneColorSet normal="#0a3694"
|
||||
select="#3667df"
|
||||
active="#5ec1ef"
|
||||
show_colored_constraints="FALSE">
|
||||
</ThemeBoneColorSet>
|
||||
<ThemeBoneColorSet normal="#a9294e"
|
||||
select="#c1416a"
|
||||
active="#f05d91"
|
||||
show_colored_constraints="FALSE">
|
||||
</ThemeBoneColorSet>
|
||||
<ThemeBoneColorSet normal="#430c78"
|
||||
select="#543aa3"
|
||||
active="#8764d5"
|
||||
show_colored_constraints="FALSE">
|
||||
</ThemeBoneColorSet>
|
||||
<ThemeBoneColorSet normal="#24785a"
|
||||
select="#3c9579"
|
||||
active="#6fb6ab"
|
||||
show_colored_constraints="FALSE">
|
||||
</ThemeBoneColorSet>
|
||||
<ThemeBoneColorSet normal="#4b707c"
|
||||
select="#6a8691"
|
||||
active="#9bc2cd"
|
||||
show_colored_constraints="FALSE">
|
||||
</ThemeBoneColorSet>
|
||||
<ThemeBoneColorSet normal="#f4c90c"
|
||||
select="#eec236"
|
||||
active="#f3ff00"
|
||||
show_colored_constraints="FALSE">
|
||||
</ThemeBoneColorSet>
|
||||
<ThemeBoneColorSet normal="#1e2024"
|
||||
select="#484c56"
|
||||
active="#ffffff"
|
||||
show_colored_constraints="FALSE">
|
||||
</ThemeBoneColorSet>
|
||||
<ThemeBoneColorSet normal="#6f2f6a"
|
||||
select="#9845be"
|
||||
active="#d330d6"
|
||||
show_colored_constraints="FALSE">
|
||||
</ThemeBoneColorSet>
|
||||
<ThemeBoneColorSet normal="#6c8e22"
|
||||
select="#7fb022"
|
||||
active="#bbef5b"
|
||||
show_colored_constraints="FALSE">
|
||||
</ThemeBoneColorSet>
|
||||
<ThemeBoneColorSet normal="#8d8d8d"
|
||||
select="#b0b0b0"
|
||||
active="#dedede"
|
||||
show_colored_constraints="FALSE">
|
||||
</ThemeBoneColorSet>
|
||||
<ThemeBoneColorSet normal="#834326"
|
||||
select="#8b5811"
|
||||
active="#bd6a11"
|
||||
show_colored_constraints="FALSE">
|
||||
</ThemeBoneColorSet>
|
||||
<ThemeBoneColorSet normal="#08310e"
|
||||
select="#1c430b"
|
||||
active="#34622b"
|
||||
show_colored_constraints="FALSE">
|
||||
</ThemeBoneColorSet>
|
||||
<ThemeBoneColorSet normal="#000000"
|
||||
select="#000000"
|
||||
active="#000000"
|
||||
show_colored_constraints="FALSE">
|
||||
</ThemeBoneColorSet>
|
||||
<ThemeBoneColorSet normal="#000000"
|
||||
select="#000000"
|
||||
active="#000000"
|
||||
show_colored_constraints="FALSE">
|
||||
</ThemeBoneColorSet>
|
||||
<ThemeBoneColorSet normal="#000000"
|
||||
select="#000000"
|
||||
active="#000000"
|
||||
show_colored_constraints="FALSE">
|
||||
</ThemeBoneColorSet>
|
||||
<ThemeBoneColorSet normal="#000000"
|
||||
select="#000000"
|
||||
active="#000000"
|
||||
show_colored_constraints="FALSE">
|
||||
</ThemeBoneColorSet>
|
||||
<ThemeBoneColorSet normal="#000000"
|
||||
select="#000000"
|
||||
active="#000000"
|
||||
show_colored_constraints="FALSE">
|
||||
</ThemeBoneColorSet>
|
||||
</bone_color_sets>
|
||||
</Theme>
|
||||
<ThemeStyle>
|
||||
<panel_title>
|
||||
<ThemeFontStyle points="12"
|
||||
font_kerning_style="FITTED"
|
||||
shadow="1"
|
||||
shadow_offset_x="0"
|
||||
shadow_offset_y="-1"
|
||||
shadow_alpha="0.15"
|
||||
shadow_value="1">
|
||||
</ThemeFontStyle>
|
||||
</panel_title>
|
||||
<widget_label>
|
||||
<ThemeFontStyle points="11"
|
||||
font_kerning_style="FITTED"
|
||||
shadow="3"
|
||||
shadow_offset_x="0"
|
||||
shadow_offset_y="-1"
|
||||
shadow_alpha="0.15"
|
||||
shadow_value="1">
|
||||
</ThemeFontStyle>
|
||||
</widget_label>
|
||||
<widget>
|
||||
<ThemeFontStyle points="11"
|
||||
font_kerning_style="FITTED"
|
||||
shadow="0"
|
||||
shadow_offset_x="0"
|
||||
shadow_offset_y="0"
|
||||
shadow_alpha="0.25"
|
||||
shadow_value="0">
|
||||
</ThemeFontStyle>
|
||||
</widget>
|
||||
</ThemeStyle>
|
||||
</bpy>
|
||||
@@ -642,8 +642,9 @@ class SEQUENCER_PT_effect(SequencerButtonsPanel, Panel):
|
||||
col.prop(strip, "translation_unit")
|
||||
col = layout.column(align=True)
|
||||
col.label(text="Position:")
|
||||
col.prop(strip, "translate_start_x", text="X")
|
||||
col.prop(strip, "translate_start_y", text="Y")
|
||||
row = col.row(align=True)
|
||||
row.prop(strip, "translate_start_x", text="X")
|
||||
row.prop(strip, "translate_start_y", text="Y")
|
||||
|
||||
layout.separator()
|
||||
|
||||
@@ -655,8 +656,9 @@ class SEQUENCER_PT_effect(SequencerButtonsPanel, Panel):
|
||||
else:
|
||||
col = layout.column(align=True)
|
||||
col.label(text="Scale:")
|
||||
col.prop(strip, "scale_start_x", text="X")
|
||||
col.prop(strip, "scale_start_y", text="Y")
|
||||
row = col.row(align=True)
|
||||
row.prop(strip, "scale_start_x", text="X")
|
||||
row.prop(strip, "scale_start_y", text="Y")
|
||||
|
||||
layout.separator()
|
||||
|
||||
@@ -714,7 +716,9 @@ class SEQUENCER_PT_effect(SequencerButtonsPanel, Panel):
|
||||
|
||||
col.prop(strip, "align_x")
|
||||
col.prop(strip, "align_y")
|
||||
col.prop(strip, "location")
|
||||
col.label("Location")
|
||||
row = col.row(align=True)
|
||||
row.prop(strip, "location", text="")
|
||||
col.prop(strip, "wrap_width")
|
||||
layout.operator("sequencer.export_subtitles")
|
||||
|
||||
@@ -726,8 +730,9 @@ class SEQUENCER_PT_effect(SequencerButtonsPanel, Panel):
|
||||
if not strip.use_default_fade:
|
||||
col.prop(strip, "effect_fader", text="Effect fader")
|
||||
elif strip.type == 'GAUSSIAN_BLUR':
|
||||
col.prop(strip, "size_x")
|
||||
col.prop(strip, "size_y")
|
||||
row = col.row(align=True)
|
||||
row.prop(strip, "size_x")
|
||||
row.prop(strip, "size_y")
|
||||
|
||||
|
||||
class SEQUENCER_PT_input(SequencerButtonsPanel, Panel):
|
||||
|
||||
@@ -486,7 +486,7 @@ void ED_view3d_from_m4(float mat[4][4], float ofs[3], float quat[4], float *dist
|
||||
struct BGpic *ED_view3D_background_image_new(struct View3D *v3d) RET_NULL
|
||||
void ED_view3D_background_image_remove(struct View3D *v3d, struct BGpic *bgpic) RET_NONE
|
||||
void ED_view3D_background_image_clear(struct View3D *v3d) RET_NONE
|
||||
void ED_view3d_update_viewmat(struct Scene *scene, struct View3D *v3d, struct ARegion *ar, float viewmat[4][4], float winmat[4][4]) RET_NONE
|
||||
void ED_view3d_update_viewmat(struct Scene *scene, struct View3D *v3d, struct ARegion *ar, float viewmat[4][4], float winmat[4][4], const struct rcti *rect) RET_NONE
|
||||
float ED_view3d_grid_scale(struct Scene *scene, struct View3D *v3d, const char **grid_unit) RET_ZERO
|
||||
void ED_view3d_shade_update(struct Main *bmain, struct Scene *scene, struct View3D *v3d, struct ScrArea *sa) RET_NONE
|
||||
void ED_node_shader_default(const struct bContext *C, struct ID *id) RET_NONE
|
||||
|
||||
Reference in New Issue
Block a user